From a16deb3dd1ddc97adbbedc84e5abcedeae1bd29a Mon Sep 17 00:00:00 2001 From: Rich Bowen Date: Wed, 11 Jan 2023 15:32:28 +0000 Subject: [PATCH] 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 --- docs/manual/mod/mod_rewrite.xml | 7 +++++++ 1 file changed, 7 insertions(+) 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. +

+ -- 2.47.2