You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2019/10/23 19:56:25 UTC

svn commit: r1868823 - /httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml

Author: jailletc36
Date: Wed Oct 23 19:56:24 2019
New Revision: 1868823

URL: http://svn.apache.org/viewvc?rev=1868823&view=rev
Log:
Fix a broken link and use more standard casing for On|Off

(r1868821 in trunk)

Modified:
    httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml?rev=1868823&r1=1868822&r2=1868823&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml Wed Oct 23 19:56:24 2019
@@ -5099,21 +5099,21 @@ hostname or IP address</description>
 <name>QualifyRedirectURL</name>
 <description>Controls whether the REDIRECT_URL environment variable is
              fully qualified</description>
-<syntax>QualifyRedirectURL ON|OFF</syntax>
-<default>QualifyRedirectURL OFF</default>
+<syntax>QualifyRedirectURL On|Off</syntax>
+<default>QualifyRedirectURL Off</default>
 <contextlist><context>server config</context><context>virtual host</context>
 <context>directory</context>
 </contextlist>
 <override>FileInfo</override>
 <compatibility>Directive supported in 2.4.18 and later. 2.4.17 acted
-as if 'QualifyRedirectURL ON' was configured.</compatibility>
+as if 'QualifyRedirectURL On' was configured.</compatibility>
 
 <usage>
     <p>This directive controls whether the server will ensure that the 
     REDIRECT_URL environment variable is fully qualified.  By default, 
     the variable contains the verbatim URL requested by the client, 
-    such as "/index.html".  With <directive module="core"
-    >QualifyRedirectURL ON</directive>, the same request would result in a
+    such as "/index.html".  With <directive
+    >QualifyRedirectURL On</directive>, the same request would result in a
     value such as "http://www.example.com/index.html".</p>
     <p>Even without this directive set, when a request is issued against a 
     fully qualified URL, REDIRECT_URL will remain fully qualified.