Hallo Forum,
ich habe einen Apache am Laufen und möchte SSI nutzen. So in meinem Webroot /usr/local/httpd/htdocs/ funktuioneirt das auch.
So ich hab mir nun einen Virtual Host angelegt, dessen Root /home/www/local2/httpd ist. In diesem Verzeichnis funktioniert SSI nicht.
Hier die entsprechenden httpd.conf Einträge
Die standard root conf:
<Directory "/usr/local/httpd/htdocs">
Options Indexes -FollowSymLinks MultiViews Includes ExecCGI
AllowOverride None
Order allow,deny
Allow from all
<IfModule mod_dav.c>
DAV Off
</IfModule>
<Files /usr/local/httpd/htdocs/index.htm*>
Options -FollowSymLinks +Includes +MultiViews
</Files>
<Files test.php3>
Order deny,allow
deny from all
allow from localhost
</Files>
</Directory>
Das habe ich hinzugefügt für mein verzeichnis:
<Directory "/home/www/local2/httpd">
Options All
AllowOverride All
Order allow,deny
Allow from all
</Directory>
Kann mir jemand sagen, was ich falsch gemacht habe?
Danke Uli