I just tried to redirect nonexistent files on the server to my custom 404 page but it only redirects .html files.

I used that in my .htaccess file:

ErrorDocument 404 /404/404.html

How can I redirect all nonexistent files (including .php) to my custom page?

Thanks

link|improve this question

Wait, we are talking about Apache, right...? – Thomas Nov 11 '09 at 16:08
yes,it is, exactly. – Ahmet vardar Nov 11 '09 at 16:09
Do you use some other mechanisms like mod_rewrite that can get in conflict with this? – Gumbo Nov 19 '09 at 20:58
feedback

3 Answers

This should redirect all nonexistent files in the same directory as that .htaccess file. What happens in case a nonexistent PHP file is requested?

link|improve this answer
actually depends on browser, in firefow i get "no input file specified." in chrome just "HTTP 404 - File not found" – Ahmet vardar Nov 11 '09 at 16:07
feedback

It could be that some other rule or directive (for example, a redirect) processes the PHP files before it gets to your ErrorDocument directive. Without more information, this is impossible to tell.

link|improve this answer
feedback

Try that:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteuRule .* home.html [L]

If you wants 404 redirection RewriteuRule .* home.html [R=404,L]

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.