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:10:42 UTC

svn commit: r1868821 - /httpd/httpd/trunk/docs/manual/mod/core.xml

Author: jailletc36
Date: Wed Oct 23 19:10:42 2019
New Revision: 1868821

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

Modified:
    httpd/httpd/trunk/docs/manual/mod/core.xml

Modified: httpd/httpd/trunk/docs/manual/mod/core.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/core.xml?rev=1868821&r1=1868820&r2=1868821&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/core.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/core.xml Wed Oct 23 19:10:42 2019
@@ -5284,21 +5284,21 @@ recognized methods to modules.</p>
 <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.