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
access.logto see when an actual 404 happened. Then check theerror.logif it didn't do what you expected. – mario Oct 7 '11 at 16:15