[thelist] Issues with Apache Multiviews and AOL

Charles R Graham cgraham25 at csc.com
Tue Feb 17 08:13:59 CST 2004


Greetings,

I'm working on a new website, using links of the form <a href="about" >, 
which resolves either to 'about.html' or a directory named 'about' which 
contains an index.html document.  Everything is working just fine, except 
when accessed by AOL.  AOL "cannot find the page".  Funny thing is, 
running IE 6.0 through the same account, the page is rendered fine.  I am 
at a loss here.

Link to the site, which is quite unfinished yet: 
http://seniorcommander.dyndns.org

The conf file for the site:

<VirtualHost *>
    ServerName www.seniorcommander.info
    ServerAlias seniorcommander.dyndns.org www.seniorcommander.dyndns.org 
seniorcommander.info
    ServerAdmin lightkeeper at knology.net
    DocumentRoot /var/www/webs/srcmdr
    DirectoryIndex index index.html
    AddType application/x-httpd-php .html
    <FilesMatch "\.html$">
        ExpiresActive On
        ExpiresDefault A1
        Header append Cache-Control: "no-cache, must-revalidate"
        php_value auto_prepend_file "/var/www/webs/srcmdr/inc/header.phpi"
        php_value auto_append_file "/var/www/webs/srcmdr/inc/footer.phpi"
    </FilesMatch>
    <Directory /var/www/webs/srcmdr>
        Options All Multiviews
        AllowOverride None
        <IfModule mod_access.c>
            Order deny,allow
            Allow from all
        </IfModule>
    </Directory>
</VirtualHost>


Thanks,
Chuck


More information about the thelist mailing list