htaccess Grammar tutorial Apache server pseudo static rules tutorial _php Tutorial

Source: Internet
Author: User
Tags deprecated php source code response code
htaccess Grammar tutorial Apache server pseudo static rules tutorial

Note: If you are in order to find discuz! forum for static rules, in fact, do not look here, discuz! backstage there is a link in the direct copy just. Phpwind I do not know, no use, backstage should also have it.

These days have been studying Apache rewrite rules, although there are many tutorials on the web, but found that most of them are copied a person, not all, so I want to write a simple easy to understand the tutorial, I study. htaccess is from the directory protection began, this is relatively simple, there are some editors on the Internet can choose, here does not say, the tutorial from the binding domain name to the subdirectory began, the web also has a tutorial, most of them are copied a person, I explain here, the tutorial is like this:

Rewriteengineon

rewritecond%{http_host}^ (www\.)? xxx\.com$

rewritecond%{request_uri}!^/blog/

Rewritecond%{request_filename}!-f

Rewritecond%{request_filename}!-d

rewriterule^ (. *) $/blog/$1

#没有输入文件名的默认到到首页

rewritecond%{http_host}^ (www\.)? xxx\.com$

rewriterule^ (/)? $blog/index.php[l]

Here I begin to explain the above meaning:

"Rewriteengineon" means that the rewrite engine is on, off, and the function is to conveniently turn the following statements on or off, so that no one comment statement is required.

"rewritecond%{http_host}^ (www\.)?" xxx\.com$ "

This is the overriding condition, preceded by%{http_host}, which represents the URL of the current visit, only refers to the prefix part, the format is www.xxx.com does not include "http:/" and "/", ^ represents the beginning of the string, $ denotes the end of the string, \. Indicates escaped., if not escaped, it is recommended to escape, to prevent some servers do not support,? Represents the front parenthesis www\. 0 or 1 occurrences, the rule means that if the URL visited is xxx.com or www.xxx.com executes the following statement, the non-conformance is skipped.

"rewritecond%{request_uri}!^/blog/"

is also a rewrite condition,%{request_uri} means the relative address of the access, that is, the address of the relative root directory, is the domain name/back of the composition, the format includes the first "/", "!", which means the address of the access does not start with/blog/, just the beginning ^, no end $

"Rewritecond%{request_filename}!-f"

"Rewritecond%{request_filename}!-d"

These two sentences mean that the requested file or path does not exist, and if a file or path exists, it will return a file or path that already exists

The "rewriterule^ (. *) $/blog/$1" Rewrite rule, the most important part, means that when the above rewritecond conditions are met, this rewrite rule will be executed, and ^ (. *) $ is a regular expression match that matches the current requested url,^ (. * $ means match any character of the current URL,. Represents any single character, * indicates a match 0 or N times (n>0), and the latter/blog/$1 is an overriding ingredient, meaning that the previously matched word rename characters is written in/blog/$1, which represents a reverse match, The reference is the component of the first parenthesis above, that is ^ (. *) $. *, there will be a problem here, discussed later.

"rewritecond%{http_host}^ (www\.)?" xxx\.com$ "

"rewriterule^ (/)? $blog/index.php[l]"

This means that the requested host address is www.xxx.com, if the end of the address is only 0 or 1 "/", will be rewritten to the subdirectory of the home page, I guess this is mainly because the rewritten address is not automatically find the home page, you need to specify.

Now to talk about the problems that arise, rewriterule^ (. *) $/blog/$1 the former part ^ (. *) $ will match the URL of the current request, for example: The request URL is http://www.xxx.com/a.html, exactly matches the entire http:// Www.xxx.com/a.html, or just match the/a.html that is behind the backslash, or only the a.html.

The answer is: according to rewritebase rules, if the rewritebase is/, will match a.html, without the preceding backslash, so the last statement should be written rewriterule^ (. *) $blog/$1 (without/), However, the actual application with the front of the backslash, can also be used, may not take the line. Now the problem comes out, if not set Rewritebase to/, will match the entire URL http://www.xxx.com/a.html, obviously this is wrong, so should add this:

rewitebase/

Another problem is that there is no guarantee that the URLs entered by everyone are lowercase, and if the input is uppercase, the Linux system is case-sensitive, so you should add [NC] to ignore the case after Rewritecond.

At this point, the complete statement should be:

# # # #start # #

Rewriteengineon

rewitebase/

rewritecond%{http_host}^ (www\.)? XXX\.COM$[NC]

rewritecond%{request_uri}!^/blog/

Rewritecond%{request_filename}!-f

Rewritecond%{request_filename}!-d

rewriterule^ (. *) $blog/$1

#没有输入文件名的默认到到首页

rewritecond%{http_host}^ (www\.)? XXX\.COM$[NC]

rewriterule^ (/)? $blog/index.php[l]

# # # #end # #

If you continue to have a statement later, you should not add the last [L], because it means the last statement

Anti-theft chain statements, also need to add rewitebase/, as follows:

Rewriteengineon

rewitebase/

REWRITECOND%{HTTP_REFERER}!^$[NC]

REWRITECOND%{HTTP_REFERER}!XXX.INFO[NC]

Rewriterule\. (jpg|gif|png|bmp|swf|jpeg) $/error/daolian.gif[r,nc,l]

If you continue to have a statement later, you should not add the last [l],/error/daolian.gif image that appears when someone hotlinking.

The following is a simple syntax rule and flags:

"Rewritecond Syntax:"

Rewritecondteststringcondpattern[flags]

Other uses of Rewritecond:

'-d ' (directory)

Treat TestString as a pathname and test whether it is a directory that exists.

'-f ' (regular file)

Treat teststring as a path name and test whether it is a regular file that exists.

'-S ' (non-empty regular file)

Treat TestString as a pathname and test whether it is an existing regular file with a size greater than 0.

'-l ' (symbolic Connection)

Treat TestString as a pathname and test whether it is an existing symbolic connection.

'-X ' (executable)

Treat TestString as a pathname and test whether it is an existing file with executable permissions. This permission is detected by the operating system.

'-f ' (Files that exist on a child request)

Check if teststring is a valid file and can be accessed under the current access control configuration of the server. It uses an internal sub-request to do the check, because it will reduce the performance of the server, so please use it carefully!

'-u ' (the URL that exists for a child request)

Check if teststring is a valid URL and can be accessed under the current access control configuration of the server. It uses an internal sub-request to do the check, because it will reduce the performance of the server, so please use it carefully!

"Rewriterule Syntax:"

Rewriterulepatternsubstitution[flags]

"Flags":

' Chain| C ' (link next rule)

This tag links the current rule to the next rule. It produces this effect: if a rule is matched, it continues to process its successor, that is, the tag does not work, and if the rule is not matched, its successor rule is skipped. For example, when performing an external redirect in a directory-level rule, you may need to delete ". www" (". www" should not appear here).

' cookie|co=name:val:domain[:lifetime[:p Ath]] ' (set cookies)

Set a cookie on the client. The name of the cookie is "name" and the value is Val. Domains are the domain of the cookie, such as '. Apache.org ', the optional lifetime is the lifetime of the cookie (in minutes), and the optional path is the cookie.


' Env| E=var:val ' (Setting environment variables)

This tag will have an environment variable var value of Val,val that can contain extensible regular expression inverse references ($N and%n). This tag can be used multiple times to set multiple variables. These variables can be referenced indirectly in many subsequent cases, usually in Xssi ( ) or CGI ($ENV {' VAR '}), or through%{env:var} in the Condpattern parameter of subsequent rewritecond directives. Use it to remember the information that is stripped from the URL.

' Forbidden| F ' (Enforce forbidden URL)

Forces the current URL to be suppressed, that is, to immediately respond to an HTTP response code of 403 (forbidden). With this tag, you can link several rewriteconds to conditionally block certain URLs.

' Gone| G ' (Mandatory deprecated URL)

Forces the current URL to be deprecated, that is, immediately feedback an HTTP response code of 410 (deprecated). Using this tag, you can indicate that the page has been deprecated and does not exist.

' Handler| H=content-handler ' (enforces the specified content processor)

Changzi the content processor for the target file is Content-handler. For example, the Scriptalias directive used to emulate the Mod_alias module to force all files in the mapped folder to be handled by the "Cgi-script" processor.

' Last| L ' (end rule)

Stops the rewrite operation immediately and no longer applies another rewrite rule. It corresponds to the last command in Perl or the break command in the C language. This flag is used to prevent URLs that are currently overridden from being rewritten again by subsequent rules. For example, you can use it to override the URL of the root path ('/') to a URL that actually exists (for example: '/e/www/').

' Next| N ' (from scratch)

Re-executes the rewrite operation (starting with the first rule). The URL that was processed again at this point is not the original URL, but the URL that was processed by the last rewrite rule. It corresponds to the next command in Perl or the Continue command in the C language. This tag can restart the rewrite operation (immediately to the beginning of the loop). But be careful not to create a dead loop!

' Nocase| NC ' (ignoring case)

It makes the pattern ignore case, that is, ' A-Z ' and ' A-Z ' are not different when pattern matches the current URL.

' Noescape| NE ' (the URI is not escaped in the output)

This flag prevents Mod_rewrite from applying a general URI escape rule to the overridden result. In general, special characters ('% ', ' $ ', '; ') And so on) will be escaped to the equivalent hexadecimal code ('%′, ' $′, '; ') , etc.). This flag prevents such escapes from allowing symbols such as percent signs to appear in the output, such as:

rewriterule/foo/(. *)/bar?arg=p1\=$1[r,ne]

Can make '/foo/zed turn to a secure request '/bar?arg=p1=zed '.

' Nosubreq| NS ' (Do not process internal sub-requests)

This token forces the rewrite engine to skip the rewrite rule when the current request is an internal child request. For example, when Mod_include tries to search the directory default file (INDEX.XXX), Apache generates a child request internally. For a child request, the rewrite rule is not necessarily useful, and it may even throw an error if the entire rule set works. Therefore, you can use this tag to exclude certain rules.

Usage guidelines: If you add a CGI script prefix to a URL to force them to be handled by a CGI script, the error rate (or resource overhead) of the child request processing is high, in which case the token can be used.

' Proxy| P ' (Mandatory for proxy)

This token causes the replacement component to be internally forced to send as a proxy request, and immediately interrupts the rewrite process and then transfers the processing to the Mod_proxy module. You must make sure that this replacement string is a valid URI that can be processed by mod_proxy (for example, starting with http://hostname), or you will get an error returned by a proxy module. With this tag, some remote components can be mapped to the local server domain name space, thereby enhancing the functionality of the Proxypass directive.

Note: To use this feature, the Mod_proxy module must already be enabled.

' Passthrough| PT ' (hand over to the next processor)

This flag forces the rewrite engine to set the URI field in the internal REQUEST_REC structure to the value of the FileName field, which allows the output of the rewriterule instruction to be alias,scriptalias (from the URI to the file name). Redirect and other instructions for subsequent processing [Original: Thisflagisjustahacktoenablepost-processingoftheoutputofrewriteruledirectives,usingalias, Scriptalias,redirect,andotherdirectivesfromvariousuri-to-filenametranslators.]. Give an example of what it means: if you want to rewrite/abc to/def, and then use Mod_alias to convert/def to/ghi, you can:

REWRITERULE^/ABC (. *)/DEF$1[PT]

Alias/def/ghi

If the PT mark is omitted, though the uri=/abc/... Rewrite for filename=/def/... Section works fine, but subsequent mod_alias are invalidated when attempting to convert a URI to a file name.

Note: You must use this tag if you need to mix multiple modules that convert URIs to file names: Mixed use of Mod_alias and mod_rewrite here is a typical example.

' Qsappend| QSA ' (append query string)

This flag forces the rewrite engine to append a query string to an existing replacement string, rather than a simple replacement. You can use this tag if you need to add information to the request string through a rewrite rule.

' Redirect| R[=code] ' (Force redirect)

If substitution begins with http://thishost[:thisport]/(making the new URL a URI), an external redirect can be enforced. If code is not specified, an HTTP response code of 302 (temporary move) is generated. If you need to use a different response code in the range of 300-400, just specify it here (or use one of the following symbol names: Temp (default), Permanent,seeother). You can use it to feed the normalized URL back to the client, such as "/~" to "/u/", or always to/u/user with a slash, and so on.

Note: When you use this tag, you must make sure that the replacement field is a valid URL. Otherwise, it will point to an invalid location! And keep in mind that this tag itself simply adds a http://thishost[:thisport]/prefix to the URL, and the rewrite operation continues. In general, you will also want to stop the rewrite operation and immediately redirect, then you need to use the ' L ' tag.

' Skip| S=num ' (skip the successor rule)

This flag forces the rewrite engine to skip NUM rules after the current matching rule. It simulates the IF-THEN-ELSE structure: The last rule is the then clause, and the skip=n rule that is skipped is the ELSE clause. Note: it and ' chain| The C ' tag is different!

' Type| T=mime-type ' (Force MIME type)

The force target file has a MIME type of mime-type and can be used to force the content type to be set based on certain conditions. For example, the following instruction allows a. php file to be displayed by mod_php according to the MIME type of the PHP source code (APPLICATION/X-HTTPD-PHP-SOURCE) in the case of a. Phps extension:

rewriterule^ (. +\.php) S$$1[t=application/x-httpd-php-source]

"Apache server variable:"

http://www.bkjia.com/PHPjc/477293.html www.bkjia.com true http://www.bkjia.com/PHPjc/477293.html techarticle htaccess Grammar tutorial Apache server pseudo Static Rules tutorial Note: If you are to find the discuz! forum for static rules, in fact, do not look here, discuz! backstage has a chain contact into ...

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.