From: Rich Bowen Date: Thu, 4 Nov 2010 15:51:51 +0000 (+0000) Subject: Note that RewriteOptions inherit causes parent rules to be applied AFTER X-Git-Tag: 2.3.9~159 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cec5fed21d9a18e22e46ababe0ab8b63818f89ca;p=thirdparty%2Fapache%2Fhttpd.git Note that RewriteOptions inherit causes parent rules to be applied AFTER child scope rules. PR46399 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1031046 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_rewrite.html.en b/docs/manual/mod/mod_rewrite.html.en index d5722d3e370..21eadbdce82 100644 --- a/docs/manual/mod/mod_rewrite.html.en +++ b/docs/manual/mod/mod_rewrite.html.en @@ -799,7 +799,9 @@ later
inherit
-
This forces the current configuration to inherit the +
+ +

This forces the current configuration to inherit the configuration of the parent. In per-virtual-server context, this means that the maps, conditions and rules of the main server are inherited. In per-directory context this means @@ -812,7 +814,13 @@ later the local rules. The position of this directive - below or above of local rules - has no influence on this behavior. If local rules forced the rewriting to stop, the inherited rules won't - be processed.

+ be processed.

+ +
+ Rules inherited from the parent scope are applied + after rules specified in the child scope. +
+
diff --git a/docs/manual/mod/mod_rewrite.xml b/docs/manual/mod/mod_rewrite.xml index 762633e03c8..39873be967b 100644 --- a/docs/manual/mod/mod_rewrite.xml +++ b/docs/manual/mod/mod_rewrite.xml @@ -141,7 +141,9 @@ later
inherit
-
This forces the current configuration to inherit the +
+ +

This forces the current configuration to inherit the configuration of the parent. In per-virtual-server context, this means that the maps, conditions and rules of the main server are inherited. In per-directory context this means @@ -154,7 +156,13 @@ later the local rules. The position of this directive - below or above of local rules - has no influence on this behavior. If local rules forced the rewriting to stop, the inherited rules won't - be processed.

+ be processed.

+ + + Rules inherited from the parent scope are applied + after rules specified in the child scope. + +