From: Rich Bowen Date: Wed, 11 Jan 2023 15:32:28 +0000 (+0000) Subject: As per this thread - X-Git-Tag: 2.5.0-alpha2-ci-test-only~155 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a16deb3dd1ddc97adbbedc84e5abcedeae1bd29a;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/docs/manual/mod/mod_rewrite.xml b/docs/manual/mod/mod_rewrite.xml index 4eda236adf5..a8092d03a3c 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.

+

By default, multiple RewriteConds + are evaluated in sequence with an implied logical AND. + If a condition fails, in the absence of an + OR flag, the entire ruleset is abandoned, + and further conditions are not evaluated. +

+