一.什么是rewrite
rewirte主要实现是url地址重写,以及重定向,就是把传入web的请求重定向到其它的url的过程。
二.rewritre使用场景
- 1.地址跳转,用户访问yuntaoshu.cn/dynamic这个url时,将其定向至一个新的域名www.yuntaohu.cn。
- 2.协议跳转,用户通过http协议请求网站时,将其重新跳转至https协议方式。
- 3.伪静态,将动态页面显示为静态页面方式的一种技术,便于搜索引擎的录入,同时减少动态URL地址对外暴露过多的参数,提升安全性(主要有开发写入代码实现只需要引用就可以)
官方配置请参考链接:http://nginx.org/en/docs/http/ngx_http_rewrite_module.html
句法: if (condition) { ... }
默认: —
内容: server, location
#用于切换维护页面场景
#rewrite ^(.*)$ /page/wh.html break;
三.rewrite标记flag
rewrite指令根据表达式来重定向URI,或者修改URI字符串。每行rewrite指令最后跟一个flag标记,支持的flag标记有如下:
开发常用
|ast:本条规则匹配完成后,停止匹配,不在匹配后面的规则
break:本条规则匹配完成后,停止匹配,不在匹配后面的规则
运维使用
redirect:返回302临时重定向, 地址栏会显示跳转后的地址
permanent:返回301永久重定向, 地址栏会显示跳转后的地址
last和 break 都是一个作用,都是表示停止rewrite规则,那last和break区别?
break匹配到规则,则会去本地路径中目录中寻找对应请求的文件。
last匹配到规则,会对其所在的server{...}标签重新发起请求。
所以,在访问/break和/last请求时,虽然对应的请求目录/test都是不存在了,理论上都应该返回404,但是实际请求/last的时候,是会有后面localtion所匹配到的结果返回的,如果last匹配不到location的结果则在返回错误。
break:
首先:
1.如果规则被匹配到了,会先去查找本地是否存在该文件
不存在,则直接返回错误,404 403
存在, 存在则直接返回该页面的内容
last:
首先:
1.如果规则被匹配到了,会对当前的server{}重新发起请求,/last
rewrite.test.com/test/ --->
先进行location的匹配,如果匹配则走location
如果没有匹配,则查找本地目录下是否存在该文件,如果存在则返回,不存在则报错.
测试示例:
server {
listen 80;
server_name rewrite.test.com;
root /code;
location ~ ^/break {
rewrite ^/break /test/ break;
}
location ~ ^/last {
rewrite ^/last /test/ last;
}
location /test/ {
default_type application/json;
return 200 "ok";
}
}
redirect和permanent区别?
redirect临时跳转,每次请求时,都会询问服务器
permanent永久跳转,第一次请求时会循环,跳转后会记录跳转的状态在浏览器中,当下次在请求时候,会通过浏览器的缓存直接跳转.
测试示例
[root@web01 conf.d]# vim rewrite.conf
server {
listen 80;
server_name rewrite.test.com;
root /code;
location /oldtest {
rewrite ^(.*)$ https://www.yuntaoshu.cn redirect;
rewrite ^(.*)$ https://www.yuntaoshu.cn permanent;
}
}
说明:依次注释其中一条规则,重启nginx进行测试。
nginx url跳转示例
rewrite配置格式
rewrite 正则表达式 替换成什么内容 标记
示例1http://www.test.com/abc/1.html ==> http://www.test.com/ccc/bbb/2.html
1.准备真实的访问路径
[root@web03 ~]# mkdir /code/ccc/bbb -p
[root@web03 ~]# echo "ccc_bbb_2" > /code/ccc/bbb/2.html
2.Nginx跳转配置
[root@web03 conf.d]# cat ccbb.conf
server {
listen 80;
server_name www.test.com;
location / {
root /code;
index index.html;
}
location /abc {
rewrite (.*) /ccc/bbb/2.html redirect;
#return 302 /ccc/bbb/2.html;
}
}
示例2 http://www.test.com/2018/ccc/bbb/2.html ==> http://www.test.com/2014/ccc/bbb/2.html
location /2018 {
rewrite ^/2018/(.*) $ /2014/$1 redirect;
}
示例3用户访问course-11-22-33.html实际上真实访问是/course/11/22/33/course_33.html,http://www.test//course-11-22-33.html ==> http://www.test.com/course/11/22/33/course_33.html或http://www.test.com/course-44-55-66.html ==> http://www.test.com/course/44/55/66/course_66.html
location ~ ^/course {
rewrite (.*)-(.*)-(.*)-(.*)\.(.*) /$1/$2/$3/$4/$1_$4.$5 break;
}
示例4将http请求,跳转至https
server {
listen 80;
server_name www.yuntaoshu.cn;
rewrite ^(.*) https://$server_name$1 redirect;
#return 302 https://$server_name$request_uri; ##推荐第二种配置
}
server {
listen 443;
server_name www.yuntaoshu.cn;
ssl on;
......
}
Rewrite优先级
1.先执行server块的rewrite指令
2.其次执行location匹配规则
3.最后执行location中的rewrite
示例
server {
listen 80;
server_name www.test.com;
#rewrite ^(.*)$ https://$server_name$1;
location / {
rewrite ^(.*)$ https://www.yuntaoshu.cn;
}
location /test {
rewrite ^(.*)$ https://www.yuntaoshu.cn;
}
}
www.test.com/ --> server 中的rewrite
www.test.com/ --> location 匹配 location / 在执行location中的rewrirte
www.test.com/test --> location 匹配 location /test 在执行location中的rewrirte
Rewrite在匹配过程中会用到的一些Nginx全局变量
1.$server_name 当前用户请求的域名 www.test.com --->$server_name = www.test.com
www.test.com/images/test.jpg -->/code/images/test.jpg
2.$request_filename 判断文件是否存在
当前请求的文件路径名(带网站的主目录/code/images/test.jpg)
www.test.com/images/test.jpg -->/images/test.jpg http ---跳转--> https
3.$request_uri
当前请求的文件路径名(不带网站的主目录/images/test.jpg)
4.$scheme用的协议,比如http或者https
参考内容
http://www.onexin.net/rewrite.php apache rewrite转 nginx rewrite
https://nginxconfig.io/
https://github.com/onlyGuo/nginx-gui
网友评论