Nginx的Rewrite跳转!
Posted handsomeboy-东
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx的Rewrite跳转!相关的知识,希望对你有一定的参考价值。
理解nginx中的rewrite跳转
一、Rewrite
Nginx跳转场景
- URL看起来更规范、合理
- 企业会将动态URL地址伪装成静态地址提供服务
- 网站换新域名后,让旧的访问跳转到新的域名上
- 服务端某些业务调整
Nginx跳转实现
- 支持URL重写、支持if条件判断(但不支持else,相当于只支持if单分支)
- Rewrite使用nginx全局变量或自己设置的变量,结合正则表达式和标志位实现URL重写以及重定向
- ngx_http_rewrite_module模块用于使用PCRE正则表达式更改请求URI,返回重定向并有条件地选择配置
- 跳转是从一个location跳转到另外一个location,循环最多可以执行10次,超过后nginx将返回500错误
Rewrite实际场景
(1)Nginx跳转实现需求的方式
- 使用rewrite进行匹配跳转
- 使用if匹配全局变量后跳转
- 使用location匹配再跳转
(2)rewrite放在server{}、if{},location{}段中
(3)对域名或参数字符串
- 使用if全局变量匹配
- 使用proxy_pass反向代理
Nginx正则表达式元字符
^ :匹配输入字符串的其实位置
$ :匹配输入字符串的结束位置
* :匹配前面额字符零次或多次
+ :匹配前面的字符一次或多次
? :匹配前面的字符零次或一次
. :表示任意单个字符
\\ :转义符
\\d:匹配纯数字
\\w :匹配字母、数字、下划线、汉字
\\s :匹配任意空白符
\\b :匹配单词的开始或结束
{n} :重复n次
{n,} :重复n次或更多次
[c] :匹配单个字符c
[a-z] :匹配a-z小写字母的任意一个
[a-zA-Z] :匹配a-z小写字母或A-Z大写字母的任意一个
() :表达式的开始和结束位置
| :或运算符
二、Rewrite命令
Rewrite命令语法
rewrite <regex> <replacement> [flag];
#regex :正则
#replacement :跳转后的内容
#flag :rewrite支持的flag标记,对此条匹配结果进行标记
flag标记说明
- last :相当于Ppache的[L]标记,表示完成rewrite
- break :本条规则匹配完成即终止,不再匹配后面的任何规则
- redirect :返回302临时重定向,浏览器地址会显示跳转后的URL地址,爬虫不会更新url
- permanent :返回301永久重定向,浏览器地址栏会显示跳转后的URL地址,爬虫更新url
last和break的区别:
- 使用场景: last一般写在server和if中,break一般使用再location中
- URL匹配: last不终止重写后的url匹配,break终止重写后的url匹配,配置文件中有多个location匹 配,其中last不影响后面的匹配,而break则终止后面的匹配,其匹配顺序有优先级
rewrite执行顺序
http {
server {
rewrite #优先级为1,最先执行
location ~*\\.(jpg|gif|swf)$ {
rewrite #优先级为2
vald_referers none blocked *.whd.com whd.com;
if ( $infalid_referer ) {
rewrite ^/ http://www.whd.com/crror.png; #优先级为3
}
}
}
}
三、location
location分类
- location = patt {} #精准匹配
- location patt {} #一般匹配
- location ~ patt {} #正则匹配
正则匹配的常用表达式
~ :执行正则匹配,区分大小写
~* :执行正则匹配,不区分大小写
!~ :执行正则匹配,区分大小写,不匹配
!~* :执行正则匹配,不区分大小写,不匹配
^~ :普通字符匹配;使用前缀匹配,如果匹配成功,则不再匹配其他location
= :普通字符精确匹配,也就是完全匹配
@ :定义一个命名的location,使用在内部定向时
location优先级
- 相同类型的表达式,字符串长的会优先匹配
- 按优先级排列
= 类型
^~ 类型表达式
正则表达式(~和~*)类型
常规字符串匹配类型,按前缀匹配
通用匹配(/),如果没有其它匹配,任何请求都会匹配到
location优先级规则
- 匹配某个文件
(location =完整路径)>(location ~完整路径)(location ~*完整路径)> (location~完整路径)(location完整路径)>(location /)
- 匹配某个目录
(location =目录)>(location^~目录/)>(location目录)(location目录)(location目录)>(location /)
rewrite和location区别
- 相同点:都能实现跳转
- 不同点
- rewrite是在同一域名内更改获取资源的路径
- location是对一类路径做控制访问或反向代理,还可以proxy_pass到其他机器
- rewrite会卸载location里,执行顺序为:
- 执行server块里面的rewrite指令
- 执行location匹配
- 执行选定的location中的rewrite指令
location优先级实例
location = / { #精准匹配/,主机名后面不能带任何字符串
[configuration A]
}
location / { #所有的地址都以/开头,这条规则将匹配到所有请求,但正则和最长字符串会优先匹配
[configuration B]
}
location /documents/ { #匹配任何以/documents/开头的地址,当后面的正则i奥达斯没有匹配到时,才起作用
[configuration C]
}
location ~ /documents/abc { #匹配任何以/documents/abc开头额地址,当后妈的正则表达式没有匹配到时,才会起作用
[configuraton D]
}
location ^~ /images/ { #以/images/开头的地址,匹配复核后,停止往下匹配
[configuration E]
}
location ~*/.(gif|jpg|jpeg)$ { #匹配所有以gif.jpg或jpeg结尾的请求,/images/下的图片会被[configuration E]处理,因为^~优先级更高
[configuration F]
}
location /images/abc { #最长字符匹配到/images/abc,优先级最低
[configuration G]
}
location ~ /images/abc { #以/images/abc开头的,优先级次之
[configuration H]
}
location /images/abc/1.html { #如果和正则~ /images/abc/1.html相比,正则优先级更高
[configuration I]
}
四、跳转实例
基于域名的跳转
要求:将旧域名www.whd.com变更为新域名www.test.com,旧域名不能废除,后面的参数保持不变
设备准备:一台CentOS7作为服务器,一台CentOS7作为客户端访问域名
server:
[root@server ~]# vim /etc/hosts
192.168.118.50 www.whd.com www.test.com #添加本地IP地址跟域名映射关系
[root@server ~]# mkdir -p /var/log/nginx #创建日志目录
[root@server ~]# vim /usr/local/nginx/conf/nginx.conf #修改配置文件
[root@server ~]# vim /usr/local/nginx/html/index.html
<h1>www.whd.com</h1>
~
[root@server ~]# systemctl restart nginx.service
client ;
[root@localhost ~]# vim /etc/hosts #添加新域名和IP地址映射关系
基于客户端IP地址访问跳转
要求:公司业务新版本上线,要求所有IP访问任何内容都显示一个固定维护页面,只有公司IP192.168.118.50访问正常
在这里插入代码片
[root@server ~]# mkdir -p /var/www/html
[root@server ~]# echo "<h1>this is weihu web</h1>" > /var/www/html/weihu.html
[root@server ~]# systemctl restart nginx.service
再本机上访问
基于旧域名跳转到新域名后面加目录
要求:访问http://www.whd.com/post/1.html都跳转到www.test.com/bbs/post/1.html下
[root@server ~]# mkdir -p /usr/local/nginx/html/bbs/post
[root@server ~]# echo "this is 1.html" >> /usr/local/nginx/html/bbs/post/1.html
[root@server post]# echo "192.168.43.50 www.test.com" > /etc/hosts
[root@server ~]# vim /usr/local/nginx/conf/nginx.conf
[root@server post]# systemctl restart nginx.service
基于参数匹配的跳转
要求:访问www.whd.com/100-(100|200)-100.html跳转到www.whd.com的页面
[root@server post]# vim /usr/local/nginx/conf/nginx.conf
访问网址http://www.whd.com/100-200-32254.html,其中32254为随机数,会发现仍然会跳转到www.whd.com
基于目录下所有php结尾的文件跳转(账户注册)
[root@server ~]# vim /usr/local/nginx/conf/nginx.conf
[root@server ~]# systemctl restart nginx.service
再访问http://www.whd.com/upload/520.php,惠跳转至首页
基于最普通的一条url请求的跳转
访问一个具体的页面跳转到首页
[root@server ~]# vim /usr/local/nginx/conf/nginx.conf
[root@server ~]# systemctl restart nginx.service
总结
- rewrite目的:提升服务体验,基于不同场景精确匹配访问的URL,使其跳转到新的场景
- rewrite三种方式:rewrite、if判断、location
- location匹配方式:精确匹配、正则匹配、普通匹配
以上是关于Nginx的Rewrite跳转!的主要内容,如果未能解决你的问题,请参考以下文章