]> granicus.if.org Git - apache/commitdiff
Merge from trunk
authorRich Bowen <rbowen@apache.org>
Tue, 19 Mar 2013 01:45:46 +0000 (01:45 +0000)
committerRich Bowen <rbowen@apache.org>
Tue, 19 Mar 2013 01:45:46 +0000 (01:45 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1458086 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/rewrite/flags.xml

index bd9b256bc56556657e23d4a9ee78c37f331308ad..66109aa3259ac628d0b2fecc65b8ab7f5f2462f5 100644 (file)
@@ -71,7 +71,7 @@ characters before applying the transformation.
 </p>
 
 <p><code>mod_rewrite</code> has to unescape URLs before mapping them,
-so backreferences will be unescaped at the time they are applied.
+so backreferences are unescaped at the time they are applied.
 Using the B flag, non-alphanumeric characters in backreferences
 will be escaped. For example, consider the rule:</p>
 
@@ -102,7 +102,7 @@ when the backend may break if presented with an unescaped URL.</p>
 module="mod_rewrite">RewriteRule</directive> is chained to the next
 rule. That is, if the rule matches, then it is processed as usual and
 control moves on to the next rule. However, if it does not match, then
-the next rule, and any other rules that are chained together, will be
+the next rule, and any other rules that are chained together, are
 skipped.</p>
 
 </section>
@@ -155,7 +155,7 @@ connections.</dd>
 <dt>httponly</dt>
 <dd>If set to <code>HttpOnly</code>, <code>true</code>, or
 <code>1</code>, the cookie will have the <code>HttpOnly</code> flag set,
-which means that the cookie will be inaccessible to JavaScript code on
+which means that the cookie is inaccessible to JavaScript code on
 browsers that support this feature.</dd>
 </dl>
 
@@ -170,8 +170,8 @@ RewriteRule ^/index\.html - [CO=frontdoor:yes:.example.com:1440:/]
 The "-" rewrite target tells mod_rewrite to pass the request
 through unchanged. Instead, it sets a cookie
 called 'frontdoor' to a value of 'yes'. The cookie is valid for any host
-in the <code>.example.com</code> domain. It will be set to expire in 1440
-minutes (24 hours) and will be returned for all URIs.</p>
+in the <code>.example.com</code> domain. It is set to expire in 1440
+minutes (24 hours) and is returned for all URIs.</p>
 
 </section>
 
@@ -220,7 +220,7 @@ variables work.</p>
 </example>
 
 <p><code>VAL</code> may contain backreferences (<code>$N</code> or
-<code>%N</code>) which will be expanded.</p>
+<code>%N</code>) which are expanded.</p>
 
 <p>Using the short form</p>