From: Rich Bowen
Apache has to unescape URLs before mapping them, +
mod_rewrite
has to unescape URLs before mapping them,
so backreferences will be unescaped at the time they are applied.
Using the B flag, non-alphanumeric characters in backreferences
will be escaped. For example, consider the rule:
Using the [F] flag causes Apache to return a 403 Forbidden status +
Using the [F] flag causes the server to return a 403 Forbidden status
code to the client. While the same behavior can be accomplished using
the Deny
directive, this
allows more flexibility in assigning a Forbidden status.
The [G] flag forces Apache to return a 410 Gone status with the +
The [G] flag forces the server to return a 410 Gone status with the response. This indicates that a resource used to be available, but is no longer available.
@@ -443,7 +443,7 @@ considered.
You must make sure that the substitution string is a valid URI
(typically starting with http://
hostname) which can be
-handled by the Apache proxy module. If not, you will get an
+handled by the mod_proxy
. If not, you will get an
error from the proxy module. Use this flag to achieve a
more powerful implementation of the ProxyPass
directive,
to map remote content into the namespace of the local server.
Apache has to unescape URLs before mapping them, +
mod_rewrite
has to unescape URLs before mapping them,
so backreferences will be unescaped at the time they are applied.
Using the B flag, non-alphanumeric characters in backreferences
will be escaped. For example, consider the rule:
Using the [F] flag causes Apache to return a 403 Forbidden status +
Using the [F] flag causes the server to return a 403 Forbidden status
code to the client. While the same behavior can be accomplished using
the
The [G] flag forces Apache to return a 410 Gone status with the +
The [G] flag forces the server to return a 410 Gone status with the response. This indicates that a resource used to be available, but is no longer available.
@@ -435,7 +435,7 @@ considered.
You must make sure that the substitution string is a valid URI
(typically starting with http://
hostname) which can be
-handled by the Apache proxy module. If not, you will get an
+handled by the