summaryrefslogtreecommitdiff
path: root/docs/manual/custom-error.html.en
diff options
context:
space:
mode:
authorKen Coar <coar@apache.org>1997-07-06 17:19:19 +0000
committerKen Coar <coar@apache.org>1997-07-06 17:19:19 +0000
commit87226ebeb806ec2a617bcb4cad5a8132f61d4288 (patch)
tree95a0894cadc66264033bcdfb132d6e1293640d8f /docs/manual/custom-error.html.en
parentaf3a6b9524b1be4506b0eaa73cf472e9d0f286b0 (diff)
downloadhttpd-87226ebeb806ec2a617bcb4cad5a8132f61d4288.tar.gz
More HTML cleanups, retrofit of intentional <XA> tag to a no-op
<A NAME> (thanks, Marc). Lots of trailing blanks removed throughout. Small addition to the new_features_1_3 page. Plenty of cleanup still to come.. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@78545 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/custom-error.html.en')
-rw-r--r--docs/manual/custom-error.html.en15
1 files changed, 7 insertions, 8 deletions
diff --git a/docs/manual/custom-error.html.en b/docs/manual/custom-error.html.en
index 3165ec044e..cdd4ac9b54 100644
--- a/docs/manual/custom-error.html.en
+++ b/docs/manual/custom-error.html.en
@@ -29,13 +29,12 @@
response, then this response can be replaced with either some
friendlier text or by a redirection to another URL (local or
external).
-
<P>
-
+
<DT>Old behavior
- <DD>NCSA httpd 1.3 would return some boring old error/problem message
- which would often be meaningless to the user, and would provide no
+ <DD>NCSA httpd 1.3 would return some boring old error/problem message
+ which would often be meaningless to the user, and would provide no
means of logging the symptoms which caused it.<BR>
<P>
@@ -69,7 +68,7 @@ REDIRECT_SERVER_SOFTWARE=Apache/0.8.15 <br>
REDIRECT_URL=/cgi-bin/buggy.pl <br>
</code></blockquote>
- <P>note the <code>REDIRECT_</code> prefix.
+ <P>note the <code>REDIRECT_</code> prefix.
<P>At least <code>REDIRECT_URL</code> and <code>REDIRECT_QUERY_STRING</code> will
be passed to the new URL (assuming it's a cgi-script or a cgi-include). The
@@ -94,16 +93,16 @@ ErrorDocument 404 /Lame_excuses/not_found.html <br>
ErrorDocument 401 /Subscription/how_to_subscribe.html
</code></blockquote>
- <P>The syntax is,
+ <P>The syntax is,
<P><code><A HREF="mod/core.html#errordocument">ErrorDocument</A></code>
-&lt;3-digit-code&gt; action
+&lt;3-digit-code&gt; action
<P>where the action can be,
<OL>
<LI>Text to be displayed. Prefix the text with a quote (&quot;). Whatever
- follows the quote is displayed. <em>Note: the (&quot;) prefix isn't
+ follows the quote is displayed. <em>Note: the (&quot;) prefix isn't
displayed.</em>
<LI>An external URL to redirect to.