Rewrite url重定向就是实现URL的跳转和隐藏真实地址,基于Perl语言的正则表达式规范。平时帮助我们实现拟静态,拟目录,域名跳转,防止盗链等
1.Apache Rewrite的主要功能
就是实现URL的跳转和隐藏真实地址,基于Perl语言的正则表达式规范。平时帮助我们实现拟静态,拟目录,域名跳转,防止盗链等
2.Apache Rewrite的配置
Apache下的Rewrite配置主要有两种,一种是针对整个apache服务器的配置,此种配置的Rewrite规则是直接在httpd.conf下书写。配置步骤如下:
(1)去除httpd.conf文件中
#LoadModule rewrite_module modules/mod_rewrite.so
前面的"#"号;
(2)然后再在httpd.conf中书写如下规则:
RewriteEngine on #当访问任何以t_开头,以.html结尾的文件时,将$1用与(.*)匹配的字符替换后,访问相应的test.php页面 RewriteRule ^/t_(.*).html$ /test.php?id=$1
另一种是针对apache服务器下的某一目录的配置,此种配置的Rewrite规则需在此目录下建立一个.htaccess文件来书写。配置步骤如下:
(1)去除httpd.conf文件中"#LoadModule rewrite_module modules/mod_rewrite.so"前面的"#"号;
(2)修改httpd.conf文件中的"AllowOverride None"为"AllowOverride all",同时最好将Options也置为"all",否则可能会出问题。
(3)在目录中建立.htaccess文件,并用记事本打开,书写如下规则:
RewriteEngine on RewriteRule ^/t_(.*).html$ /test.php?id=$1 3.Apache Rewrite规则的书写 RewriteEngine on RewriteRule ^/test([0-9]*).html$ /test.php?id=$1 RewriteRule ^/new([0-9]*)/$ /new.php?id=$1 [R] RewriteEngine on #当我们访问的地址不是以www.jianzhan.love开头的,那么执行下一条规则 RewriteCond %{HTTP_HOST} !^www.jianzhan.love [NC] RewriteRule ^/(.*) http://www.jianzhan.love/ [L]
例一
xxx.com/sell/201503/18/index706.html
重定向
xxx.com/sell/show-707.html
RewriteRule ^shell/([0-9]{6})/([0-9]{1,2})/index([0-9]+).html $ http://www.xxx.com/shell/show-$3.html [N=301,L]
例二
/html/p/a/222.html
/html/b/20120304_222.html
这两个都重定向
/html/n/222.html
RewriteRule ^html/p/a/([0-9]+).html$ /html/n/$2.html [R=301,L] RewriteRule ^html/b/([0-9]+)_([0-9]+).html$ /html/n/$2.html [R=301,L]
例三
#301带www跳转 #RewriteCond %{HTTP_HOST} !^jianzhan.love$ [NC] #RewriteRule ^(.*)$ http://jianzhan.love/$1 [L,R=301] #301不带www跳转 RewriteCond %{HTTP_HOST} ^jianzhan.love [NC] RewriteRule ^(.*)$ http://www.jianzhan.love/$1 [L,R=301]
4.Apache Rewrite规则修正符
1) R 强制外部重定向
2) F 禁用URL,返回403HTTP状态码。
3) G 强制URL为GONE,返回410HTTP状态码。
4) P 强制使用代理转发。
5) L 表明当前规则是最后一条规则,停止分析以后规则的重写。
6) N 重新从第一条规则开始运行重写过程。
7) C 与下一条规则关联
如果规则匹配则正常处理,以下修正符无效
8) T=MIME-type(force MIME type) 强制MIME类型
9) NS 只用于不是内部子请求
10) NC 不区分大小写
11) QSA 追加请求字符串
12) NE 不在输出转义特殊字符 \%3d$1 等价于 =$1
附图