diff options
author | Rich Bowen <rbowen@apache.org> | 2023-01-11 16:32:28 +0100 |
---|---|---|
committer | Rich Bowen <rbowen@apache.org> | 2023-01-11 16:32:28 +0100 |
commit | a16deb3dd1ddc97adbbedc84e5abcedeae1bd29a (patch) | |
tree | 4ac21ee1182f0f2def09af41bfec11fb31537cf4 /docs/manual/mod/mod_rewrite.xml | |
parent | cleanup on error (diff) | |
download | apache2-a16deb3dd1ddc97adbbedc84e5abcedeae1bd29a.tar.xz apache2-a16deb3dd1ddc97adbbedc84e5abcedeae1bd29a.zip |
As per this thread -
https://lists.apache.org/thread/g36po3tp24xl92s182plxlgv8rnl1hj8 -
clarify what RewriteCond evaluation is "fast fail."
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1906605 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | docs/manual/mod/mod_rewrite.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/manual/mod/mod_rewrite.xml b/docs/manual/mod/mod_rewrite.xml index 4eda236adf..a8092d03a3 100644 --- a/docs/manual/mod/mod_rewrite.xml +++ b/docs/manual/mod/mod_rewrite.xml @@ -1059,6 +1059,13 @@ RewriteRule "^/$" "/homepage.std.html" [L] 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> |