Раздел 4. URL Rewriting Guide RU EN Пункт 43. RewriteRule Flags This document discusses the flags which are available to the
IntroductionA RewriteRule pattern target [Flag1,Flag2,Flag3] Each flag (with a few exceptions) has a short form, such as
Flags that alter metadata associated with the request (T=, H=, E=) have no affect in per-directory and htaccess context, when a substitution (other than '-') is performed during the same round of rewrite processing. Presented here are each of the available flags, along with an example of how you might use them. B (escape backreferences)The [B] flag instructs In 2.4.26 and later, you can limit the escaping to specific characters
in backreferences by listing them: RewriteRule "^search/(.*)$" "/search.php?term=$1" Given a search term of 'x & y/z', a browser will encode it as
'x%20%26%20y%2Fz', making the request 'search/x%20%26%20y%2Fz'. Without the B
flag, this rewrite rule will map to 'search.php?term=x & y/z', which
isn't a valid URL, and so would be encoded as
With the B flag set on this same rule, the parameters are re-encoded
before being passed on to the output URL, resulting in a correct mapping to
RewriteRule "^search/(.*)$" "/search.php?term=$1" [B,PT] Note that you may also need to set This escaping is particularly necessary in a proxy situation, when the backend may break if presented with an unescaped URL. An alternative to this flag is using a BNP|backrefnoplus (don't escape space to +)The [BNP] flag instructs This flag is available in version 2.4.26 and later. C|chainThe [C] or [chain] flag indicates that the CO|cookieThe [CO], or [cookie] flag, allows you to set a cookie when a
particular The full syntax for the flag, including all attributes, is as follows: If a literal ':' character is needed in any of the cookie fields, an alternate syntax is available. To opt-in to the alternate syntax, the cookie "Name" should be preceded with a ';' character, and field separators should be specified as ';'. You must declare a name, a value, and a domain for the cookie to be set.
You may optionally also set the following values:
Consider this example: RewriteEngine On RewriteRule "^/index\.html" "-" [CO=frontdoor:yes:.example.com:1440:/] In the example give, the rule doesn't rewrite the request.
The "-" rewrite target tells mod_rewrite to pass the request
through unchanged. Instead, it sets a cookie
called 'frontdoor' to a value of 'yes'. The cookie is valid for any host
in the DPI|discardpathThe DPI flag causes the PATH_INFO portion of the rewritten URI to be discarded. This flag is available in version 2.2.12 and later. In per-directory context, the URI each The current URI can be the initial URI as requested by the client, the result of a previous round of mod_rewrite processing, or the result of a prior rule in the current round of mod_rewrite processing. In contrast, the PATH_INFO that is appended to the URI before each
rule reflects only the value of PATH_INFO before this round of
mod_rewrite processing. As a consequence, if large portions
of the URI are matched and copied into a substitution in multiple
Use this flag on any substitution where the PATH_INFO that resulted from the previous mapping of this request to the filesystem is not of interest. This flag permanently forgets the PATH_INFO established before this round of mod_rewrite processing began. PATH_INFO will not be recalculated until the current round of mod_rewrite processing completes. Subsequent rules during this round of processing will see only the direct result of substitutions, without any PATH_INFO appended. E|envWith the [E], or [env] flag, you can set the value of an environment variable. Note that some environment variables may be set after the rule is run, thus unsetting what you have set. See the Environment Variables document for more details on how Environment variables work. The full syntax for this flag is: [E=VAR:VAL] [E=!VAR] Using the short form you can set the environment variable named The form allows to unset a previously set environment variable named
Environment variables can then be used in a variety of contexts, including CGI programs, other RewriteRule directives, or CustomLog directives. The following example sets an environment variable called 'image' to a value of '1' if the requested URI is an image file. Then, that environment variable is used to exclude those requests from the access log. RewriteRule "\.(png|gif|jpg)$" "-" [E=image:1] CustomLog "logs/access_log" combined env=!image Note that this same effect can be obtained using ENDUsing the [END] flag terminates not only the current round of rewrite processing (like [L]) but also prevents any subsequent rewrite processing from occurring in per-directory (htaccess) context. This does not apply to new requests resulting from external redirects. F|forbiddenUsing 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 following rule will forbid RewriteRule "\.exe" "-" [F] This example uses the "-" syntax for the rewrite target, which means 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|goneThe [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. As with the [F] flag, you will typically use the "-" syntax for the rewrite target when using the [G] flag: RewriteRule "oldproduct" "-" [G,NC] When using [G], an [L] is implied - that is, the response is returned immediately, and no further rules are evaluated. H|handlerForces the resulting request to be handled with the specified handler. For example, one might use this to force all files without a file extension to be parsed by the php handler: RewriteRule "!\." "-" [H=application/x-httpd-php]
The regular expression above - This can be also used to force the handler based on some conditions.
For example, the following snippet used in per-server context allows
RewriteRule "^(/source/.+\.php)s$" "$1" [H=application/x-httpd-php-source] The regular expression above - L|lastThe [L] flag causes If you are using It is therefore important, if you are using An alternative flag, [END], can be used to terminate not only the current round of rewrite processing but prevent any subsequent rewrite processing from occurring in per-directory (htaccess) context. This does not apply to new requests resulting from external redirects. The example given here will rewrite any request to
RewriteBase "/" RewriteCond "%{REQUEST_URI}" "!=/index.php" RewriteRule "^(.*)" "/index.php?req=$1" [L,PT] N|nextThe [N] flag causes the ruleset to start over again from the top, using the result of the ruleset so far as a starting point. Use with extreme caution, as it may result in loop. The [Next] flag could be used, for example, if you wished to replace a certain string or letter repeatedly in a request. The example shown here will replace A with B everywhere in a request, and will continue doing so until there are no more As to be replaced. RewriteRule "(.*)A(.*)" "$1B$2" [N] You can think of this as a In 2.4.8 and later, this module returns an error after 32,000 iterations to protect against unintended looping. An alternative maximum number of iterations can be specified by adding to the N flag. # Be willing to replace 1 character in each pass of the loop RewriteRule "(.+)[><;]$" "$1" [N=64000] # ... or, give up if after 10 loops RewriteRule "(.+)[><;]$" "$1" [N=10] NC|nocaseUse of the [NC] flag causes the In the example below, any request for an image file will be proxied
to your dedicated image server. The match is case-insensitive, so that
RewriteRule "(.*\.(jpg|gif|png))$" "http://images.example.com$1" [P,NC] NE|noescapeBy default, special characters, such as RewriteRule "^/anchor/(.+)" "/bigpage.html#$1" [NE,R]
The above example will redirect NS|nosubreqUse of the [NS] flag prevents the rule from being used on
subrequests. For example, a page which is included using an SSI (Server
Side Include) is a subrequest, and you may want to avoid rewrites
happening on those subrequests. Also, when To decide whether or not to use this rule: if you prefix URLs with CGI-scripts, to force them to be processed by the CGI-script, it's likely that you will run into problems (or significant overhead) on sub-requests. In these cases, use this flag. Images, javascript files, or css files, loaded as part of an HTML page, are not subrequests - the browser requests them as separate HTTP requests. P|proxyUse of the [P] flag causes the request to be handled by
RewriteRule "/(.*)\.(jpg|gif|png)$" "http://images.example.com/$1.$2" [P] Use of the [P] flag implies [L] - that is, the request is immediately pushed through the proxy, and any following rules will not be considered.
You must make sure that the substitution string is a valid URI
(typically starting with Security WarningTake care when constructing the target URL of the rule, considering the security impact from allowing the client influence over the set of URLs to which your server will act as a proxy. Ensure that the scheme and hostname part of the URL is either fixed, or does not allow the client undue influence. Performance warningUsing this flag triggers the use of This is because this flag triggers the use of the default worker, which does not handle connection pooling/reuse. Avoid using this flag and prefer those directives, whenever you can. Note: PT|passthrough
The target (or substitution string) in a RewriteRule is assumed to be a
file path, by default. The use of the [PT] flag causes it to be treated
as a URI instead. That is to say, the
use of the [PT] flag causes the result of the
If, for example, you have an
Alias "/icons" "/usr/local/apache/icons" RewriteRule "/pics/(.+)\.jpg$" "/icons/$1.gif" [PT] Omission of the [PT] flag in this case will cause the Alias to be ignored, resulting in a 'File not found' error being returned. The Note that the QSA|qsappend
When the replacement URI contains a query string, the default behavior
of Consider the following rule: RewriteRule "/pages/(.+)" "/page.php?page=$1" [QSA] With the [QSA] flag, a request for QSD|qsdiscard
When the requested URI contains a query string, and the target URI does
not, the default behavior of This flag is available in version 2.4.0 and later. Using [QSD] and [QSA] together will result in [QSD] taking precedence.
If the target URI has a query string, the default behavior will be
observed - that is, the original query string will be discarded and
replaced with the query string in the QSL|qslast
By default, the first (left-most) question mark in the substitution
delimits the path from the query string. Using the [QSL] flag instructs
This is useful when mapping to files that have literal question marks in their filename. If no query string is used in the substitution, a question mark can be appended to it in combination with this flag. This flag is available in version 2.4.19 and later. R|redirect
Use of the [R] flag causes a HTTP redirect to be issued to the browser.
If a fully-qualified URL is specified (that is, including
Any valid HTTP response status code may be specified,
using the syntax [R=305], with a 302 status code being used by
default if none is specified. The status code specified need not
necessarily be a redirect (3xx) status code. However,
if a status code is outside the redirect range (300-399) then the
substitution string is dropped entirely, and rewriting is stopped as if
the In addition to response status codes, you may also specify redirect
status using their symbolic names:
You will almost always want to use [R] in conjunction with [L] (that is,
use [R,L]) because on its own, the [R] flag prepends
S|skipThe [S] flag is used to skip rules that you don't want to run. The
syntax of the skip flag is [S=N], where N signifies
the number of rules to skip (provided the # Is the request for a non-existent file? RewriteCond "%{REQUEST_FILENAME}" "!-f" RewriteCond "%{REQUEST_FILENAME}" "!-d" # If so, skip these two RewriteRules RewriteRule ".?" "-" [S=2] RewriteRule "(.*\.gif)" "images.php?$1" RewriteRule "(.*\.html)" "docs.php?$1" This technique is useful because a # Does the file exist? RewriteCond "%{REQUEST_FILENAME}" "!-f" RewriteCond "%{REQUEST_FILENAME}" "!-d" # Create an if-then-else construct by skipping 3 lines if we meant to go to the "else" stanza. RewriteRule ".?" "-" [S=3] # IF the file exists, then: RewriteRule "(.*\.gif)" "images.php?$1" RewriteRule "(.*\.html)" "docs.php?$1" # Skip past the "else" stanza. RewriteRule ".?" "-" [S=1] # ELSE... RewriteRule "(.*)" "404.php?file=$1" # END It is probably easier to accomplish this kind of configuration using
the T|typeSets the MIME type with which the resulting response will be
sent. This has the same effect as the For example, you might use the following technique to serve Perl source code as plain text, if requested in a particular way: # Serve .pl files as plain text RewriteRule "\.pl$" "-" [T=text/plain] Or, perhaps, if you have a camera that produces jpeg images without file extensions, you could force those images to be served with the correct MIME type by virtue of their file names: # Files with 'IMG' in the name are jpg images. RewriteRule "IMG" "-" [T=image/jpg] Please note that this is a trivial example, and could be better done
using
If used in per-directory context, use only |
![]() |