I have just changed webservers. For some reason, my .htaccess file is preventing me from loading any .php files on my site, instead going to 404.
The server is running PHP 4.3.3, and this is the .htaccess I am using:
Code:
ErrorDocument 401 http://afireinside.org/401.html
ErrorDocument 403 http://afireinside.org/403.html
ErrorDocument 404 http://afireinside.org/404.html
AddType text/html .shtml
AddHandler server-parsed .html
AddHandler server-parsed .shtml
Options Indexes FollowSymLinks Includes
<Files .htaccess>
order allow,deny
deny from all
</Files>
Has anyone any ideas why this is happenning, or can suggest a different way to write my .htaccess file?
|