I have a default httpd.conf, fresh install. When I call a directory http://www.bla.com/forum, it does not execute the index.php in it, but wants to save it. When I call that file directly using http://www.bla.com/forum/index.php then it works.
Strange enough, the root directory works fine
I think it has something to do with this, but I just can't figure it out, who has the sollution?
Strange enough, the root directory works fine
I think it has something to do with this, but I just can't figure it out, who has the sollution?
<Directory /home/*>
AllowOverride All
Options MultiViews -Indexes FollowSymlinks IncludesNoExec +Includes
<Limit GET POST OPTIONS PROPFIND>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS PROPFIND>
Order deny,allow
Deny from all
</LimitExcept>
</Directory>
<IfModule mod_dir.c>
DirectoryIndex index.php index.html index.htm index.shtml index.php4 index.php3 index.phtml index.cgi
</IfModule>