From 5838bb7f5d1b4bf3818e604e050ac06ae360c73c Mon Sep 17 00:00:00 2001
From: Daniel Gruno
Date: Fri, 13 Jul 2012 11:16:49 +0000
Subject: [PATCH] Add missing highlighting
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1361160 13f79535-47bb-0310-9956-ffa450edef68
---
docs/manual/custom-error.xml | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/docs/manual/custom-error.xml b/docs/manual/custom-error.xml
index da6159396d..1698b89768 100644
--- a/docs/manual/custom-error.xml
+++ b/docs/manual/custom-error.xml
@@ -145,12 +145,12 @@ ErrorDocument 401 /subscription/how_to_subscribe.html
caused it to be invoked. For instance, a Perl ErrorDocument
script might include the following:
-
- ...
- print "Content-type: text/html\n";
- printf "Status: %s Condition Intercepted\n", $ENV{"REDIRECT_STATUS"};
- ...
-
+
+...
+print "Content-type: text/html\n";
+printf "Status: %s Condition Intercepted\n", $ENV{"REDIRECT_STATUS"};
+...
+
If the script is dedicated to handling a particular error
condition, such as 404 Not Found
, it can
@@ -174,10 +174,10 @@ ErrorDocument 401 /subscription/how_to_subscribe.html
In your server configuration file, you'll see a line such as:
-
+
# Multi-language error messages
#Include conf/extra/httpd-multilang-errordoc.conf
-
+
Uncommenting this Include
line will enable this
feature, and provide language-negotiated error messages, based on
--
2.50.1