custom 404 page for nonexistent php files

350 Views Asked by At

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

3

There are 3 best solutions below

1
On

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

0
On

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.

0
On

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]