From: Rich Bowen Date: Fri, 1 Jan 2010 18:53:24 +0000 (+0000) Subject: Typo, and a few additional details. X-Git-Tag: 2.3.5~39 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=79dc8455cba7c929bf61adc2056b76a248a9e583;p=apache Typo, and a few additional details. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@895052 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/rewrite/flags.html.en b/docs/manual/rewrite/flags.html.en index 5e776bb12f..4ba800ca16 100644 --- a/docs/manual/rewrite/flags.html.en +++ b/docs/manual/rewrite/flags.html.en @@ -254,6 +254,9 @@ RewriteRule \.exe - [F] that the requested URI is not modified. There's no reason to rewrite to another URI, if you're going to forbid the request.

+

When using [F], an [L] is implied - that is, the response is returned +immediately, and no further rules are evaluated.

+
top

G|gone

@@ -267,6 +270,10 @@ rewrite target when using the [G] flag:

RewriteRule oldproduct - [G,NC]

+ +

When using [F], an [L] is implied - that is, the response is returned +immediately, and no further rules are evaluated.

+
top

H|handler

@@ -302,7 +309,10 @@ expression.

L|last

The [L] flag causes mod_rewrite to stop processing the rule set. In most contexts, this means that if the rule matches, no -further rules will be processed.

+further rules will be processed. This corresponds to the +last command in Perl, or the break command in +C. Use this flag to indicate that the current rule should be applied +immediately without considering further rules.

If you are using RewriteRule in either .htaccess files or in @@ -482,7 +492,7 @@ to be discarded.

-Using [QSD] and [QSA] together will result in [QSD] taking preference. +Using [QSD] and [QSA] together will result in [QSD] taking precedence.

diff --git a/docs/manual/rewrite/flags.xml b/docs/manual/rewrite/flags.xml index e1c904f016..5d368fab83 100644 --- a/docs/manual/rewrite/flags.xml +++ b/docs/manual/rewrite/flags.xml @@ -241,6 +241,9 @@ RewriteRule \.exe - [F] that the requested URI is not modified. There's no reason to rewrite to another URI, if you're going to forbid the request.

+

When using [F], an [L] is implied - that is, the response is returned +immediately, and no further rules are evaluated.

+
G|gone @@ -254,6 +257,10 @@ rewrite target when using the [G] flag:

RewriteRule oldproduct - [G,NC] + +

When using [F], an [L] is implied - that is, the response is returned +immediately, and no further rules are evaluated.

+
H|handler @@ -289,7 +296,10 @@ expression.

L|last

The [L] flag causes mod_rewrite to stop processing the rule set. In most contexts, this means that if the rule matches, no -further rules will be processed.

+further rules will be processed. This corresponds to the +last command in Perl, or the break command in +C. Use this flag to indicate that the current rule should be applied +immediately without considering further rules.

If you are using RewriteRule in either @@ -478,7 +488,7 @@ to be discarded.

-Using [QSD] and [QSA] together will result in [QSD] taking preference. +Using [QSD] and [QSA] together will result in [QSD] taking precedence.