no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


apache_error_documents [2013/08/26 21:05] (current) – created - external edit 127.0.0.1
Line 1: Line 1:
 +====== 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:
 +
 +<code>
 +ErrorDocument 403 /err403.php
 +</code>
 +
 +Either one of these will display the string "err403.php"
 +
 +<code>
 +ErrorDocument 403 err403.php
 +ErrorDocument 403 ./err403.php
 +</code>

Navigation
QR Code
QR Code apache_error_documents (generated for current page)