nginx 网页匹配跳转(rewrite、location)

nginx 网页匹配跳转(rewrite、location)

码农世界 2024-06-05 后端 82 次浏览 0个评论

常用的Nginx 正则表达式

常用的Nginx 正则表达式
^ :匹配输入字符串的起始位置
$ :匹配输入字符串的结束位置
* :匹配前面的字符零次或多次。如“ol*”能匹配“o”及“ol”、“oll”
+ :匹配前面的字符一次或多次。如“ol+”能匹配“ol”及“oll”、“olll”,但不能匹配“o”
? :匹配前面的字符零次或一次,例如“do(es)?”能匹配“do”或者“does”,”?”等效于”{0,1}”
. :匹配除“\n”之外的任何单个字符,若要匹配包括“\n”在内的任意字符,请使用诸如“[.\n]”之                      类的模式
\ :将后面接着的字符标记为一个特殊字符或一个原义字符或一个向后引用。如“\n”匹配一个换行符,而“\$”则匹配“$”
\d :匹配纯数字[0-9]   \s :空白符    \w :任意单词字符包括下划线[A-Za-z0-9_]
{n} :重复 n 次
{n,} :重复 n 次或更多次
{n,m} :重复 n 到 m 次
[] :定义匹配的字符范围
[c] :匹配单个字符 c
[a-z] :匹配 a-z 小写字母的任意一个
[a-zA-Z0-9] :匹配所有大小写字母或数字
() :表达式的开始和结束位置
| :或运算符

从功能看 rewrite 和 location 似乎有点像,都能实现跳转,主要区别在于 rewrite 是在同一域名内更改获取资源的路径,而 location 是对一类路径做控制访问或反向代理,还可以proxy_pass 到其他机器。

rewrite和location的区别

rewrite    先对用户的URI访问路径或者域名进行重写,再重定向请求
​
location   匹配用户的URL访问路径做页面跳转、访问控制和代理转发

location

location 大致分为三类

精准匹配:location = / {}
一般匹配:location / {}
正则匹配:location ~ / {}

location 常用的匹配规则

= :进行普通字符精确匹配,也就是完全匹配。不加则是全部匹配
^~ :表示普通字符匹配。使用前缀匹配。如果匹配成功,则不再匹配其它 正则匹配location。
~ :区分大小写的匹配。
~* :不区分大小写的匹配。
!~ :区分大小写的匹配取非。
!~* :不区分大小写的匹配取非。

location 优先级

首先精确匹配 =
其次前缀匹配 ^~
其次是按文件中顺序的正则匹配 ~或~*
然后匹配不带任何修饰符的一般前缀匹配
最后是交给 / 通用匹配

优先级总结

1.(location =) 
2.(location 完整路径) 
3.(location ^~ 路径) 
4.(location ~,~* 正则顺序) 
5.(location 部分起始路径) 
6.(location /)

location示例:

1)location = / {}
=为精确匹配 / ,主机名后面不能带任何字符串,比如访问 / 和 /data,则 / 匹配,/data 不匹配
再比如 location = /abc,则只匹配/abc ,/abc/或 /abcd不匹配。若 location  /abc,则即匹配/abc 、/abcd/ 同时也匹配 /abc/。
​
(2)location / {}
因为所有的地址都以 / 开头,所以这条规则将匹配到所有请求 比如访问 / 和 /data, 则 / 匹配, /data 也匹配,
但后面前缀路径会和最长字符串优先匹配(最长匹配)
​
​
(3) /documents/ {}
匹配任何以 /documents/ 开头的地址,匹配符合以后,还要继续往下搜索其它 location
只有其它 location后面的前缀路径没有匹配到时,才会采用这一条
​
(4)location /documents/abc {}
匹配任何以 /documents/abc 开头的地址,匹配符合以后,还要继续往下搜索其它 location
只有其它 location后面的前缀路径没有匹配到时,才会采用这一条
​
(5)location ^~ /images/ {}
匹配任何以 /images/ 开头的地址,匹配符合以后,停止往下搜索正则,采用这一条
​
(6)location ~* \.(gif|jpg|jpeg)$ {}
匹配所有以 gif、jpg或jpeg 结尾的请求
然而,所有请求 /images/ 下的图片会被 location ^~ /images/ 处理,因为 ^~ 的优先级更高,所以到达不了这一条正则
​
(7)location /images/abc {}
最长字符匹配到 /images/abc,优先级最低,继续往下搜索其它 location,会发现 ^~ 和 ~ 存在
​
(8)location ~ /images/abc {}
匹配以/images/abc 开头的,优先级次之,只有去掉 location ^~ /images/ 才会采用这一条
​
(9)location /images/abc/1.html {}
匹配/images/abc/1.html 文件,如果和正则location ~ /images/abc/1.html 相比,正则优先级更高

实际网站使用中,至少有三个匹配规则定义

#第一个必选规则
直接匹配网站根,通过域名访问网站首页比较频繁,使用这个会加速处理,比如说官网。
这里是直接转发给后端应用服务器了,也可以是一个静态首页
location = / {
    proxy_pass http://tomcat_server/;
}
•
#第二个必选规则是处理静态文件请求,这是nginx作为http服务器的强项
有两种配置模式,目录匹配或后缀匹配,任选其一或搭配使用
location ^~ /static/ {
    root /webroot/static/;
}
•
location ~* .(html|gif|jpg|jpeg|png|css|js|ico)$ {
    root /webroot/res/;
}
•
#第三个规则就是通用规则,比如用来转发带.php、.jsp后缀的动态请求到后端应用服务器
非静态文件请求就默认是动态请求
location / {
    proxy_pass http://tomcat_server;
}
​

rewrite

rewrite概述:

  • rewrite功能就是,使用nginx提供的全局变量或自己设置的变量,结合正则表达式和标记位实现URL重写以及重定向。 比如:更换域名后需要保持旧的域名能跳转到新的域名上、某网页发生改变需要跳转到新的页面、网站防盗链等等需求。

    • rewrite只能放在server{},location{},if{}中,并且默认只能对域名后边的除去传递的参数外的字符串起作用

      rewrite默认的地址重写

      例如 http://www.kgc.com/abc/bbs/index.php?a=1&b=2

      只对/abc/bbs/index.php重写。

      rewrite默认情况下只对从域名后面的根路径开始到传递参数的?号前面的路径进行重写
      ​
      ​
      http://域名/旧url——> httpd://域名/新url    
      ​
      ​
      rewrite  正则表达式 /新url

      rewrite针对全域名路径重写

      要加上协议的域名

      http://旧域名/url————>http://新域名/url 
      ​
      rewrite ^/(.*)$ http://新域名/$1  permanent(页面跳转);

      使用标记位permanent或redirect过程

      http://旧域名/url ——rewrite———>http://新域名/url———>浏览器地址栏会改为http://新域名/url 再进行访问-->location匹配url路径  跳转页面

      rewrite跳转实现

      nginx 网页匹配跳转(rewrite、location)

      rewrite 执行顺序如下:

      (1) 执行 server 块里面的 rewrite 指令。 (2) 执行 location 匹配。 (3) 执行选定的 location 中的 rewrite 指令。

      rewrite语法:

      rewrite <正则表达式><指定替换的内容>
      ​
      ​
      ​
      ### #flag标记说明:
      ​
      last :本条规则匹配完成后,继续向下匹配新的
      ​
      location URI规则,一般用在 server 和 if 中。 
      ​
      break :本条规则匹配完成即终止,不再匹配后面的任何规则,一般使用在 location 中。
      ​
       redirect :返回302临时重定向,浏览器地址会显示跳转后的URL地址。 
      ​
      permanent :返回301永久重定向,浏览器地址栏会显示跳转后的URL地址。
      ​
      ​

      rewrite基于域名的跳转

      现在公司旧域名www.accp.com有业务需求变更,需要使用新域名www.hyh.com代替,但是旧域名不能废除,需要跳转到新域名上,而且后面的参数保持不变。
      vim /apps/nginx/conf/nginx.conf      #进入nginx的配置文件里,根据安装路径查找
      

      nginx 网页匹配跳转(rewrite、location) 使用nginx -t检查语法是否出错nginx 网页匹配跳转(rewrite、location)

      nginx 网页匹配跳转(rewrite、location)

       在该文件下输入此配置,虚拟机ip,旧域名,新域名

       nginx 网页匹配跳转(rewrite、location)

       nginx -s reload重载nginx,去网页上输入http://www.accp.com,就会跳转到hyh.com的域名了

       nginx 网页匹配跳转(rewrite、location)

      rewrite 基于客户端ip访问跳转

      示例:今天公司业务新版本上线,要求所有 IP 访问任何内容都显示一个固定维护页面,只有公司 IP :192.168.116.40访问正常.

       vim nginx.confnginx 网页匹配跳转(rewrite、location)

      设置html里提供维护页面的值

      [root@localhost html]# pwd

      /var/www/html

      [root@localhost html]# echo 'this is weihu web!' >weihu.html

      [root@localhost html]# ls

      weihu.html

       

       访问http://www.accp.com,显示如下,则是成功

      nginx 网页匹配跳转(rewrite、location)

       我们可以配置一个可以正常访问的主机ip,仅让此主机访问

      nginx 网页匹配跳转(rewrite、location)

       在本机打开此网页,可以访问nginx 网页匹配跳转(rewrite、location)

       如果想不止这台主机

      nginx 网页匹配跳转(rewrite、location)

      配置完成后,wq保存,nginx -t,检查nginx是否有语法问题

      再systemctl restart nginx.service重启服务

      nginx 网页匹配跳转(rewrite、location)

      rewrite基于旧域名跳转到新域名后面加目录

      现在访问的是 http://bbs.kgc.com/post/,现在需要将这个域名下面的访问都跳转到http://www.kgc.com/bbs/post/

       打开配置文件vim /usr/local/nginx/conf/nginx.conf

      nginx 网页匹配跳转(rewrite、location)

       改完后重启,并查看nginx语法是否有误。

      nginx 网页匹配跳转(rewrite、location)

      windows本机host文件里也更改

      nginx 网页匹配跳转(rewrite、location)

       输入:http://cxk.accp.com/xhz显示:

       nginx 网页匹配跳转(rewrite、location)

       输入http://cxk.accp.com/ikun

       nginx 网页匹配跳转(rewrite、location)

      基于参数匹配的跳转

      现在访问http://www.kgc.com/100-(100|200)-100.html 跳转到http://www.kgc.com页面。

      vim /usr/local/nginx/conf/nginx.conf

      server {

          listen       80;

          server_name  www.kgc.com;       #域名修改

          charset utf-8;

          access_log  /var/log/nginx/www.kgc.com-access.log  main;

          if ($request_uri ~ ^/100-(100|200)-(\d+).html$) {

              rewrite (.*) http://www.kgc.com permanent;

          }

          location / {

              root   html;

              index  index.html index.htm;

          }

      }

      systemctl restart nginx

      使用浏览器访问 http://www.kgc.com/100-200-100.html 或 http://www.kgc.com/100-100-100.html 跳转到http://www.kgc.com页面。

      nginx 网页匹配跳转(rewrite、location)

       nginx 网页匹配跳转(rewrite、location)

       nginx 网页匹配跳转(rewrite、location)

       nginx 网页匹配跳转(rewrite、location)

      nginx 网页匹配跳转(rewrite、location)nginx 网页匹配跳转(rewrite、location)

      $request_uri: 包含请求参数的原始URI,不包含主机名,如: http://www.kgc.com/abc/bbs/index.html?a=1&b=2中的/abc/bbs/index.php?a=1&b=2

      $uri:这个变量指当前的请求URI,不包括任何参数,如: /abc/bbs/index.html

      $document_uri: 与$uri相同, 这个变量指当前的请求URI,不包括任何传递参数,如:/abc/bbs/index.html

转载请注明来自码农世界,本文标题:《nginx 网页匹配跳转(rewrite、location)》

百度分享代码,如果开启HTTPS请参考李洋个人博客
每一天,每一秒,你所做的决定都会改变你的人生!

发表评论

快捷回复:

评论列表 (暂无评论,82人围观)参与讨论

还没有评论,来说两句吧...

Top