As a standard using the redirect on every site i create. Just realised i have never really implemented the 404 pages since doing this so added to .htaccess the file is as follows

<Files .htaccess>
order allow,deny
deny from all
</Files>

Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ /$1.php [L,QSA]

ErrorDocument 404 /404.php

really cant determine the issue here, I have tried renaming the file, changing the "ErrorDocument 404 /404.php" to "ErrorDocument 404 /404" as due to the rewrite the php extension is lost. Even tried linking to files in subdirectories to see if that made a difference but cant seem to find anything

link|improve this question

75% accept rate
What actually happens when you trigger a 404 with the above configuration? If it's just a white page, try looking at the request in Firebug's Net panel. – Sam Hanes Oct 7 '11 at 16:14
Look into the access.log to see when an actual 404 happened. Then check the error.log if it didn't do what you expected. – mario Oct 7 '11 at 16:15
@user966834 what happens when you go to somewhere that doesn't exits? – Death Oct 7 '11 at 16:39
Hey there it goes 500 Internal Server error page,with the code as the error doc works if i take the rewrite out. – user966834 Oct 9 '11 at 2:48
Also to add to that there are no errors in reference within the server log – user966834 Oct 9 '11 at 2:48
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.