====== Apache Error Documents ======
* [[Apache]]
* [[https://httpd.apache.org/docs/2.2/mod/core.html#ErrorDocument|mod_core: ErrorDocument]]
When setting an ''ErrorDocument'' value that uses a file, the value must be a relative path to the ''DocumentRoot''. Otherwise, it will display that string.
This will display the contents of the ''403.php'' page:
ErrorDocument 403 /err403.php
Either one of these will display the string "err403.php"
ErrorDocument 403 err403.php
ErrorDocument 403 ./err403.php