|
|
Module Rewrite - URL Rewriting Guide
top Module Rewrite Welcome to mod_rewrite, voodoo of URL manipulation.
This document describes how one can use Apache's NOTE: Depending on your server configuration it can be necessary to change the examples for your situation. Always try to understand what it really does before you use it. Bad use would lead to deadloops and will hang the server. The most example's can be used in the .htaccess file while other ones only in the Apache htppd.conf file. top RewriteCond
The You can set special flags for condition pattern by appending a third argument to the RewriteCond directive. Flags is a comma-separated list of the following flags: [NC] (No Case)This makes the condition pattern case insensitive, no difference between 'A-Z' and 'a-z'. [OR] (OR next condition)Used to combinate rule conditions with a OR. top RewriteRule
The You can set special flags for condition pattern by appending a third argument to the RewriteCond directive. Flags is a comma-separated list of the following flags: [R] (force Redirect)Redirect the URL to a external redirection. Send the HTTP response, 302 (MOVED TEMPORARILY). [F] (force URL to be Forbidden)Forces the current URL to be forbidden. Send the HTTP response, 403 (FORBIDDEN). [G] (force URL to be Gone)Forces the current URL to be gone. Send the HTTP response, 410 (GONE). [L] (last rule)Forces the rewriting processing to stop here and don't apply any more rewriting rules. [P] (force proxy)This flag forces the current URL as a proxy request and put through the proxy module mod_proxy.top Regular expressions Some hints about the syntax of regular expressions: Text: . Any single character [chars] One of chars [^chars] None of chars text1|text2 text1 or text2 Quantifiers: ? 0 or 1 of the preceding text * 0 or N of the preceding text (N > 0) + 1 or N of the preceding text (N > 1) Grouping: (text) Grouping of text Anchors: ^ Start of line anchor $ End of line anchor Escaping: \ char escape that particular char top Condition pattern There are some special variants of CondPatterns. Instead of real regular expression strings you can also use one of the following: < Condition (is lower than Condition)Treats the Condition as a string and compares it to String. True if String is lower than Condition. > Condition (is greater than Condition)Treats the Condition as a string and compares it to String. True if String is greater than CondPattern. = Condition (is equal to Condition)Treats the Condition as a string and compares it to String. True if String is equal to CondPattern. -d (is directory)Treats the String as a pathname and tests if it exists and is a directory. -f (is regular file)Treats the String as a pathname and tests if it exists and is a regular file. -s (is regular file with size)Treats the String as a pathname and tests if it exists and is a regular file with size greater than zero. -l (is symbolic link)Treats the String as a pathname and tests if it exists and is a symbolic link. -F (is existing file via sub request)Checks if String is a valid file and accessible via all the server's currently configured access controls for that path. Use it with care because it decreases your servers performance! -U (is existing URL via sub request)Checks if String is a valid URL and accessible via all the server's currently configured access controls for that path. Use it with care because it decreases your servers performance!
NOTE: You can prefix the pattern string with a ' top Protecting your images and files from linking DESCRIPTION: In some cases other webmasters are linking to your download files or using images, hosted on your server as inline-images on their pages.
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^$ [NC]
RewriteCond %{HTTP_REFERER} !^http://domain.com [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain.com [NC]
RewriteCond %{HTTP_REFERER} !^http://212.204.218.80 [NC]
RewriteRule ^.*$ http://www.domain.com/ [R,L]
EXPLAIN:
In this case are the visitors redirect to top Redirect visitor by domain name
DESCRIPTION:
In some cases the same web site is accessible by different addresses,
like
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R,L]
EXPLAIN:
In this case the requested URL top Redirect domains to other directory
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.domain.com$
RewriteCond %{REQUEST_URI} !^/HTML2/
RewriteRule ^(.*)$ /HTML2/$1
top Redirect visitor by user agent DESCRIPTION: For important top level pages it is sometimes necesarry to provide pages dependend on the browser. One has to provide a version for the latest Netscape, a version for the latest Internet Explorer, a version for the Lynx or old browsers and a average feature version for all others.
# MS Internet Explorer - Mozilla v4
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/4(.*)MSIE
RewriteRule ^index\.html$ /index.IE.html [L]
# Netscape v6.+ - Mozilla v5
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/5(.*)Gecko
RewriteRule ^index\.html$ /index.NS5.html [L]
# Lynx or Mozilla v1/2
RewriteCond %{HTTP_USER_AGENT} ^Lynx/ [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/[12]
RewriteRule ^index\.html$ /index.20.html [L]
# All other browsers
RewriteRule ^index\.html$ /index.32.html [L]
EXPLAIN:
In this case we have to act on the HTTP header |
» Keyword Ranking |
| Copyright © 2000-2008 Widexl |