Hello
Have used Apache 1.x versions for years, trying to get the latest version of 2.X
working with my site. Server Side includes with 2.x seem to be a bit
inconsistent.
I have it set up to parse all htm pages, since they all contain headers and
footers referenced via includes.
I can get server side includes working on ALL the pages except except the root
index.htm file (e.g. up at document root).
If I copy the root index.htm to another file same location, eg. test.htm they
work. Also, index.htm lcoated at other levels below the root directory works
fine. It just is not parsing the includes at the root level for that single
file called index.htm
relevant portions of my .conf file are:
<Directory "/wwwadmin/test_web_docs">
Options Includes FollowSymLinks
SetOutputFilter INCLUDES
AllowOverride None
order allow,deny
allow from XXX
deny from *
</Directory>
and later on....
AddType text/html .html
AddType text/html .htm
AddOutputFilter INCLUDES .htm
Could this effect be due to conflict or processing being intercepted by another
module?