diff options
Diffstat (limited to 'docs/manual/custom-error.html.en')
-rw-r--r-- | docs/manual/custom-error.html.en | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/manual/custom-error.html.en b/docs/manual/custom-error.html.en index 49d7992d..f3e49559 100644 --- a/docs/manual/custom-error.html.en +++ b/docs/manual/custom-error.html.en @@ -55,7 +55,7 @@ <li><img alt="" src="./images/down.gif" /> <a href="#variables">Available Variables</a></li> <li><img alt="" src="./images/down.gif" /> <a href="#custom">Customizing Error Responses</a></li> <li><img alt="" src="./images/down.gif" /> <a href="#multi-lang">Multi Language Custom Error Documents</a></li> -</ul><ul class="seealso"><li><a href="#comments_section">Comments</a></li></ul></div> +</ul><h3>See also</h3><ul class="seealso"><li><a href="#comments_section">Comments</a></li></ul></div> <div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div> <div class="section"> <h2><a name="configuration" id="configuration">Configuration</a></h2> @@ -66,10 +66,10 @@ if <code class="directive"><a href="./mod/core.html#allowoverride">AllowOverride</a></code> is set to FileInfo.</p> - <pre class="prettyprint lang-config">ErrorDocument 500 "Sorry, our script crashed. Oh dear"<br /> -ErrorDocument 500 /cgi-bin/crash-recover<br /> -ErrorDocument 500 http://error.example.com/server_error.html<br /> -ErrorDocument 404 /errors/not_found.html <br /> + <pre class="prettyprint lang-config">ErrorDocument 500 "Sorry, our script crashed. Oh dear" +ErrorDocument 500 /cgi-bin/crash-recover +ErrorDocument 500 http://error.example.com/server_error.html +ErrorDocument 404 /errors/not_found.html ErrorDocument 401 /subscription/how_to_subscribe.html</pre> @@ -155,8 +155,8 @@ ErrorDocument 401 /subscription/how_to_subscribe.html</pre> script might include the following:</p> <pre class="prettyprint lang-perl">... -print "Content-type: text/html\n"; <br /> -printf "Status: %s Condition Intercepted\n", $ENV{"REDIRECT_STATUS"}; <br /> +print "Content-type: text/html\n"; +printf "Status: %s Condition Intercepted\n", $ENV{"REDIRECT_STATUS"}; ...</pre> @@ -182,8 +182,8 @@ printf "Status: %s Condition Intercepted\n", $ENV{"REDIRECT_STATUS"}; <br /> <p>In your server configuration file, you'll see a line such as:</p> - <pre class="prettyprint lang-config"> # Multi-language error messages<br /> - #Include conf/extra/httpd-multilang-errordoc.conf</pre> + <pre class="prettyprint lang-config"># Multi-language error messages +#Include conf/extra/httpd-multilang-errordoc.conf</pre> <p>Uncommenting this <code>Include</code> line will enable this |