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 2023/01/11 15:32:28 UTC

svn commit: r1906605 - /httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml

Author: rbowen
Date: Wed Jan 11 15:32:28 2023
New Revision: 1906605

URL: http://svn.apache.org/viewvc?rev=1906605&view=rev
Log:
As per this thread -
https://lists.apache.org/thread/g36po3tp24xl92s182plxlgv8rnl1hj8 -
clarify what RewriteCond evaluation is "fast fail."

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

Modified: httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml?rev=1906605&r1=1906604&r2=1906605&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml Wed Jan 11 15:32:28 2023
@@ -1059,6 +1059,13 @@ RewriteRule  "^/$"                 "/hom
         the homepage is served. Otherwise, the standard page is served.
         </p>
 
+        <p>By default, multiple <directive>RewriteCond</directive>s
+        are evaluated in sequence with an implied logical <strong>AND</strong>.
+        If a condition fails, in the absence of an
+        <strong><code>OR</code></strong> flag, the entire ruleset is abandoned,
+        and further conditions are not evaluated.
+        </p>
+
 </usage>
 
 </directivesynopsis>