how to redirect 404 error page in php

Solutions on MaxInterview for how to redirect 404 error page in php by the best coders in the world

showing results for - "how to redirect 404 error page in php"
Franco
31 Apr 2017
1Try this in your .htaccess:
2
3ErrorDocument 404 http://jobguide.australianenglishcenter.com/404/
4
5RewriteEngine On
6RewriteBase /
7
8RewriteCond %{REQUEST_URI} ^/404/$
9RewriteRule ^(.*)$ <YourRelativePathToPHPFile>/404.php [L]
10Here,The ErrorDocument redirects all 404s to a specific URL
11
12The Rewrite rules map that URL to your actual 404.php script. The RewriteCond regular expressions can be made more generic if you want, but I think you have to explicitly define all ErrorDocument codes you want to override.
13
14NOTE: Replace