You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by no...@apache.org on 2008/03/17 00:08:06 UTC

svn commit: r637682 - /httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.xml

Author: noodl
Date: Sun Mar 16 16:08:00 2008
New Revision: 637682

URL: http://svn.apache.org/viewvc?rev=637682&view=rev
Log:
One typo, one logic error.

Submitted by: Lucien Gentis
Reviewed by: noodl

Modified:
    httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.xml

Modified: httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.xml?rev=637682&r1=637681&r2=637682&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.xml (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/rewrite_intro.xml Sun Mar 16 16:08:00 2008
@@ -211,7 +211,7 @@
 was matched by the expression inside the parenthesis in
 the <var>Pattern</var>. For example, a request
 for <code>http://example.com/product/r14df/view</code> will be mapped
-to the path <code>/var/web/productdbr14df</code>.</p>
+to the path <code>/var/web/productdb/r14df</code>.</p>
 
 <p>If there is more than one expression in parenthesis, they are
 available in order in the
@@ -224,7 +224,7 @@
 <section id="flags"><title>Rewrite Flags</title>
 <p>The behavior of a <directive
 module="mod_rewrite">RewriteRule</directive> can be modified by the
-application of one more flags to the end of the rule. For example, the
+application of one or more flags to the end of the rule. For example, the
 matching behavior of a rule can be made case-insensitive by the
 application of the <code>[NC]</code> flag:
 </p>
@@ -305,7 +305,7 @@
 files</a> at the expense of some additional complexity. This technique
 is called per-directory rewrites.</p>
 
-<p>The main difference with per-directory rewrites is that the path
+<p>The main difference with per-server rewrites is that the path
 prefix of the directory containing the <code>.htaccess</code> file is
 stripped before matching in
 the <directive module="mod_rewrite">RewriteRule</directive>. In addition, the <directive module="mod_rewrite">RewriteBase</directive> should be used to assure the request is properly mapped.</p>