I need to create 404 error pages but it should be usable for all of users, If I use ErrorDocument 404 /404.php it will display "Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request." on users web site, How to create it without placing 404.php in every users documentroot?
|
feedback
|
migrated from stackoverflow.com Aug 2 '09 at 6:41
This question came from our site for professional and enthusiast programmers.
|
You could configure your apache with rewrite rule as above:
but also put a system-wide alias in place for the /customerrors/ path
You'll just have to be a little careful to not override a website-local URL. | |||
|
feedback
|
|
Configure your apache with rewrite rule
| |||
feedback
|
|
just put filepath without http and domain: ErrorDocument 404 /errordir/myerrormsg.html | |||
|
feedback
|