目录
什么是rewrite
Rewrite又称URL Rewrite,即URL重写,就是把传入Web的请求重定向到其他URL的过程。
- URL Rewrite最常见的应用是URL伪静态化,是将动态页面显示为静态页面方式的一种技术。比如:http://www.123.com/news/index.php?id=123 使用URL Rewrite转换后可以显示为http://www.123.com/news/123.html对于追求完美主义的网站设计师,就算是网页的地址也希望看起来尽量简洁明快。理论上,搜索引擎更喜欢静态页面形式的网页,搜索引擎对静态页面的评分一般要高于动态页面。所以,URLRewrite可以让我们网站的网页更容易被搜索引擎所收录。
- 从安全角度讲,如果URL中暴露太多的参数,五一会造成一定量的信息泄露,可能会被一些黑客利用,对你的系统造成一定的破坏,所以静态化的URL地址可以为我们带来更高的安全性。
- 实现网站地址跳转,例如用户访问360buy.com,将其跳转到jd.com。例如当客户访问tianyun.com的80端口时,将其跳转到443端口。
rewrite指令:
Nginx Rewrite相关指令有if、rewrite、set、return
if语句
应用环境:server,location
语法:if (condition) {...}
if 可以支持如下条件判断匹配符号
~ 正则匹配(区分大小写)
~* 正则匹配(不区分大小写)
!~ 正则不匹配(区分大小写)
!~* 正则不匹配(不区分大小写)
-f和!-f 用来判断是否存仔文件
-d和!-d 用来判断是都存在目录
-e和!-e 用来判断是否存仔文件或者目录
-x和!-e 用来判断文件是否可以执行
在匹配过程中可以引用一些Nginx的全局变量
$args 请求中的参数;
$document_root 针对当前请求的根路径设置值;
$host 请求信息中的"Host",如果请求中没有Host行,则等于设置的服务器名;
$limit_rate 对连接速率的限制;
$request_method 请求的方法,比如“GET”、“post”等;
$remote_addr 客户端地址;
$remote_port 客户端端口号;
$remote_user 客户端用户名,认证用;
$request_filename 当前请求的文件路径名(带网站的主目录)
$request_uri 当前请求的文件路径名(不带网站的主目录)
$query_string 与$args相同;
$scheme 用的协议,比如http或者是https
$server_protocol 请求的协议版本,"HTTP/1.0"或"HTTP/1.1";
$server_addr 服务器地址,如果没有用listen指明服务器地址,使用这个变量将发起一次系统调用以取得地址(造成资源浪费);
$server_name 请求到达的服务器名;
$document_uri 与$uri一样,URI地址;
$server_port 请求到达的服务器端口号;
举例:
if (-d $request_filename) { #当前请求的文件路径名(带网站的主目录)
....;
}
匹配访问的地址是否是以www开头
if ($host ~* ^www) {
...;
}
Rewrite flag
Rewrite 指令根据表达式来重定向URL,或者修改字符串。可以应用于server、location,if环境下每行Rewrite指令最后跟一个flag标记,支持的flag标记有:
last:相当于Apache里的[L]标记,表示完成rewrite。默认为last。
break:本条规则匹配后,终止匹配,不在匹配后面的规则。
redirect:返回302临时重定向,浏览器地址会显示跳转后的URL。
permanent:返回301永久重定向,浏览器地址会显示跳转后的URL地址。
Rewrite匹配参考示例:
示例1:http://www.zcg666.com/a/1.html ==> http://www.zcg666.com/b/2.html
[root@localhost ~]# mkdir -p /html/{a,b}
[root@localhost ~]# echo "1.html" > /html/a/1.html
[root@localhost ~]# echo "2.html" > /html/b/2.html
[root@localhost ~]# tree /html/
/html/
├── a
│ └── 1.html
└── b
└── 2.html
[root@localhost ~]# vim /etc/nginx/conf.d/rewrite.conf
server {
listen 80;
server_name www.zcg666.com;
location /a {
root /html;
index 1.html;
rewrite .* /b/2.html permanent;
}
location /b {
root /html;
index 2.html;
}
}
浏览器访问测试(rewrite配置成功)
示例2:http://www.zcg666.com/2019/a/1.html ==> http://www.zcg666.com/2018/a/1.html
[root@localhost ~]# tree /html/
/html/
├── 2018
│ ├── a
│ │ └── 1.html
│ └── b
│ └── 2.html
└── 2019
└── a
└── 1.htm
[root@localhost ~]# vim /etc/nginx/conf.d/rewrite.conf
server {
listen 80;
server_name www.zcg666.com;
location /2019/a {
root /html;
index 1.html;
rewrite ^/2019/(.*)$ /2018/$1 permanent;
}
location /2018/a {
root /html;
index 1.html;
}
}
重新加载nginx配置文件!!!
浏览器访问测试(rewrite配置成功)
示例3:http://www.zcg666.com/a/1.html==>http://jd.com
[root@localhost ~]# tree /html/
/html/
└── a
└── 1.html
[root@localhost ~]# vim /etc/nginx/conf.d/rewrite.conf
server {
listen 80;
server_name www.zcg666.com;
location /a {
root /html;
rewrite .* http://jd.com permanent;
}
}
重新加载nginx配置文件
浏览器访问测试
示例4:http://www.zcg666.com/a/1.html==>http://www.hjf777.com/a/1.html
[root@localhost ~]# tree /html/
/html/
└── a
└── 1.html
[root@localhost ~]# vim /etc/nginx/conf.d/rewrite.conf
server {
listen 80;
server_name www.zcg666.com;
location /a {
root /html;
if ($host ~* 666.com) {
rewrite .* http://www.hjf777.com$request_uri permanent;
}
}
}
重新加载nginx的配置文件
浏览器访问测试
示例5:在访问目录后添加/ (如果目录后已有/,则不加/)
# http://www.zcg666.com/a/b/c
# $1: /a/b
# $2: c
# http://$host$1$2/
[root@localhost ~]# tree /html/
/html/
└── a
└── b
└── c
└── 1.html
[root@localhost ~]# vim /etc/nginx/conf.d/rewrite.conf
server {
listen 80;
server_name www.zcg666.com;
location /a/b/c {
root /html;
index 1.html;
if (-d $request_filename) {
rewrite ^(.*)([^/])$ http://$host$1$2/ permanent;
}
}
}
重启nginx配置文件
浏览器访问测试
示例6:http://www.zcg666.com/login/login.html==>http://www.zcg666.com/reg/login.html?user=login
[root@localhost ~]# tree /html/
/html/
├── login
│?? └── login.html
└── reg
└── login.html
[root@localhost ~]# vim /etc/nginx/conf.d/rewrite.conf
server {
listen 80;
server_name www.zcg666.com;
location /login {
root /html;
rewrite ^/login/(.*)\.html$ http://$host/reg/login.html?user=$1;
}
location /reg {
root /html;
index login.html;
}
}
重新加载nginx配置文件
浏览器访问测试
示例7:http://www.zcg666.com/11-22-33/1.html==>http://www.zcg666.com/11/22/33/1.html
[root@localhost ~]# tree /html/
/html/
└── 11
└── 22
└── 33
└── 1.html
[root@localhost ~]# vim /etc/nginx/conf.d/rewrite.conf
server {
listen 80;
server_name www.zcg666.com;
location / {
rewrite ^/([0-9]+)-([0-9]+)-([0-9]+)(.*)$ http://$host/$1/$2/$3$4 permanent;
}
location /11/22/33 {
root /html;
index 1.html;
}
}
重新加载nginx配置文件
浏览器访问测试
set
set 指令是用于定义一个变量,并且赋值,应用环境:server、location、if
示例:
#http://alice.testpm.com ==> http://www.testpm.com/alice
#http://jack.testpm.com ==> http://www.testpm.com/jack
[root@nginx-server conf.d]# cd /usr/share/nginx/html/
[root@nginx-server html]# mkdir jack alice
[root@nginx-server html]# echo "jack.." >> jack/index.html
[root@nginx-server html]# echo "alice.." >> alice/index.html
本地解析域名host文件
10.0.105.202 www.testpm.com
10.0.105.202 alice.testpm.com
10.0.105.202 jack.testpm.com
编辑配置文件:
server {
listen 80;
server_name www.testpm.com;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
if ( $host ~* www.testpm.com) {
break;
}
if ( $host ~* "^(.*)\.testpm\.com$" ) {
set $user $1;
rewrite .* http://www.testpm.com/$user permanent;
}
}
location /jack {
root /usr/share/nginx/html;
index index.html index.hml;
}
location /alice {
root /usr/share/nginx/html;
index index.html index.hml;
}
}
return
return 指令用于返回状态码给客户端,应用域:server、location、if
示例:
1、如果访问的.sh结尾的文件则返回403操作拒绝错误
server {
listen 80;
server_name www.testpm.cn;
#access_log /var/log/nginx/http_access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location ~* \.sh$ {
return 403;
}
}
last、break
[root@localhost test]# cat /etc/nginx/conf.d/last_break.conf
server {
listen 80;
server_name localhost;
access_log /var/log/nginx/last.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location /break/ {
root /usr/share/nginx/html;
rewrite .* /test/break.html break;
}
location /last/ {
root /usr/share/nginx/html;
rewrite .* /test/last.html last;
}
location /test/ {
root /usr/share/nginx/html;
rewrite .* /test/test.html break;
}
}
[root@localhost conf.d]# cd /usr/share/nginx/html/
[root@localhost html]# mkdir test
[root@localhost html]# echo "last" > test/last.html
[root@localhost html]# echo "break" > test/break.html
[root@localhost html]# echo "test" > test/test.html
注意:
• last 标记在本条 rewrite 规则执行完后,会对其所在的 server { … } 标签重新发起请求;
• break 标记则在本条规则匹配完成后,停止匹配,不再做后续的匹配;
• 使用 alias 指令时,必须使用 last;
• 使用 proxy_pass 指令时,则必须使用break。