Wenn Du deine
Code:
/etc/apache2/sites-enabled/ispcp.conf
Auf machst hast Du zu jeder Domain die Standardeinträge.
Hier wird "Indexes" verboten! Hat ein "-" minus davor.
Das muss weg und schon geht es
Code:
<IfModule mod_fastcgi.c>
ScriptAlias /php4/ /var/www/fcgi/deinedomain.tld/
ScriptAlias /php5/ /var/www/fcgi/deinedomain.tld/
<Directory "/var/www/fcgi/deinedomain.tld">
AllowOverride None
Options +ExecCGI -MultiViews -Indexes
Order allow,deny
Allow from all
</Directory>
</IfModule>
# httpd sub entry PHP2 support END.
<Directory /var/www/virtual/tdeinedomain.tld/os/htdocs>
# httpd sub entry PHP support BEGIN.
# httpd sub entry PHP support END.
Options -Indexes Includes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
Greez BeNe