You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2012/03/15 12:22:11 UTC

svn commit: r1300917 - in /httpd/httpd/trunk/docs/manual/rewrite: flags.xml proxy.xml remapping.xml

Author: rbowen
Date: Thu Mar 15 11:22:11 2012
New Revision: 1300917

URL: http://svn.apache.org/viewvc?rev=1300917&view=rev
Log:
Typo and link breakage patches for mod_rewrite docs. via Daniel Gruno
(rumble at cord dk)

Modified:
    httpd/httpd/trunk/docs/manual/rewrite/flags.xml
    httpd/httpd/trunk/docs/manual/rewrite/proxy.xml
    httpd/httpd/trunk/docs/manual/rewrite/remapping.xml

Modified: httpd/httpd/trunk/docs/manual/rewrite/flags.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/flags.xml?rev=1300917&r1=1300916&r2=1300917&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/flags.xml (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/flags.xml Thu Mar 15 11:22:11 2012
@@ -277,7 +277,7 @@ redirects.</p>
 <section id="flag_f"><title>F|forbidden</title>
 <p>Using the [F] flag causes the server to return a 403 Forbidden status
 code to the client. While the same behavior can be accomplished using
-the <directive module="mod_access">Deny</directive> directive, this
+the <directive module="mod_access_compat">Deny</directive> directive, this
 allows more flexibility in assigning a Forbidden status.</p>
 
 <p>The following rule will forbid <code>.exe</code> files from being
@@ -522,7 +522,7 @@ use of the [PT] flag causes the result o
 module="mod_rewrite">RewriteRule</directive> to be passed back through
 URL mapping, so that location-based mappings, such as <directive
 module="mod_alias">Alias</directive>, <directive
-module="core">Redirect</directive>, or <directive
+module="mod_alias">Redirect</directive>, or <directive
 module="mod_alias">ScriptAlias</directive>, for example, might have a
 chance to take effect.
 </p>

Modified: httpd/httpd/trunk/docs/manual/rewrite/proxy.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/proxy.xml?rev=1300917&r1=1300916&r2=1300917&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/proxy.xml (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/proxy.xml Thu Mar 15 11:22:11 2012
@@ -94,7 +94,7 @@ ProxyPassReverse / http://old.example.co
 
     <p>Consider using either <directive
     module="mod_proxy">ProxyPass</directive> or <directive
-    module="mod_rewrite">ProxyPassMatch</directive> whenever possible in
+    module="mod_proxy">ProxyPassMatch</directive> whenever possible in
     preference to mod_rewrite.</p>
     </dd>
   </dl>

Modified: httpd/httpd/trunk/docs/manual/rewrite/remapping.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/remapping.xml?rev=1300917&r1=1300916&r2=1300917&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/remapping.xml (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/remapping.xml Thu Mar 15 11:22:11 2012
@@ -249,7 +249,7 @@ RewriteRule ^(.*).html$ $1.php<br />
     &lt;Directory&gt; block or in a .htaccess file), so that the
     <code>-f</code> checks are looking at the correct directory path.
     You may need to set a <directive
-    module="mod_rewite">RewriteBase</directive> directive to specify the
+    module="mod_rewrite">RewriteBase</directive> directive to specify the
     directory base that you're working in.</p>
     </dd>
   </dl>
@@ -275,7 +275,7 @@ RewriteRule ^(.*).html$ $1.php<br />
         <dd>
 
 <p>The very best way to solve this doesn't involve mod_rewrite at all,
-but rather uses the <directive module="alias">Redirect</directive>
+but rather uses the <directive module="mod_alias">Redirect</directive>
 directive placed in a virtual host for the non-canonical
 hostname(s).</p>