基于Nginx Rewrite 与 Location 的网页匹配 跳转

一、常用的Nginx 正则表达式

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

二、访问路由location

1、location的分类

location 大致可以分为三类:

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

2、location 常用的匹配规则:

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

3、location 优先级:

首先精确匹配 =

其次前缀匹配 ^~

其次是按文件中顺序的正则匹配 ~或~*

然后匹配不带任何修饰的前缀匹配

最后是交给 / 通用匹配

4、location 示例说明:

(1)location = / {}
=为精确匹配 / ,主机名后面不能带任何字符串,比如访问 / 和 /data,则 / 匹配,/data 不匹配
再比如 location = /abc,则只匹配/abc ,/abc/或 /abcd不匹配。若 location /abc,则即匹配/abc 、/abcd/ 同时也匹配 /abc/。

(2)location / {}
因为所有的地址都以 / 开头,所以这条规则将匹配到所有请求 比如访问 / 和 /data, 则 / 匹配, /data 也匹配,
但若后面是正则表达式会和最长字符串优先匹配(最长匹配)

(3)location /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 文件,如果和正则 ~ /images/abc/1.html 相比,正则优先级更高

优先级总结:

(location =) > (location 完整路径) > (location ^~ 路径) > (location ,* 正则顺序) > (location 部分起始路径) > (location /)

 

location匹配

首先看优先级:精确>前缀>正则>一般>通用

优先级相同:正则看上下顺序,上面的优先;一般则看长度,最长匹配优先

精确、前缀、正则、一般都没有匹配到就看通用

5、实际网站使用中的三个匹配规则定义:

 5.1 第一个必选规则

直接匹配网站根,通过域名访问网站首页比较频繁,使用这个会加速处理,比如说官网。
这里是直接转发给后端应用服务器了,也可以是一个静态首页

location = / {
    proxy_pass http://tomcat_server/;
}

5.2  第二个必选规则是处理静态文件请求

这是nginx作为http服务器的强项!
有两种配置模式,目录匹配或后缀匹配,任选其一或搭配使用

location ^~ /static/ {
    root /webroot/static/;
}

location ~* \.(html|gif|jpg|jpeg|png|css|js|ico)$ {
    root /webroot/res/;
}

5.3   第三个规则就是通用规则

比如用来转发带.php、.jsp后缀的动态请求到后端应用服务器
非静态文件请求就默认是动态请求

location / {
    proxy_pass http://tomcat_server;
}  

三、访问重新rewrite

1、rewrite的概述

rewrite功能就是,使用nginx提供的全局变量或自己设置的变量,结合正则表达式和标志位实现url重写以及重定向

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

例如:

http://www.clj.com/a/we/index.php?id=1&u=str 只对/a/we/index.php重写。

2、rewrite 执行顺序如下:

(1) 执行 server 块里面的 rewrite 指令

(2) 执行 location 匹配

(3) 执行选定的 location 中的 rewrite 指令

语法: rewrite <regex> <replacement> [flag];

regex :表示正则匹配规则

replacement :表示跳转后的内容

flag :表示 rewrite 支持的 flag 标记

###flag标记说明###

last :本条规则匹配完成后,继续向下匹配新的location URI规则,一般用在 server 和 if 中

break :本条规则匹配完成即终止,不再匹配后面的任何规则,一般使用在 location 中

redirect:返回302临时重定向,浏览器地址会显示跳转后的URL地址

permanent:返回301永久重定向,浏览器地址栏会显示跳转后的URL地址。

四、rewrite 示例:

1、基于域名跳转

1.1 基于域名跳转——操作步骤

现在公司旧域名www.ly.com有业务需求变更,需要使用新域名www.weq.com代替,但是旧域名不能废除,需要跳转到新域名上,而且后面的参数保持不变。

vim /usr/local/nginx/conf/nginx.conf
server {
	listen       80;
	server_name  www.ly.com;										#域名修改	
	charset utf-8;
	access_log  /var/log/nginx/www.ly.com-access.log  main;		#日志修改
	location / {													#添加域名重定向
        if ($host = ‘www.ly.com‘){									#$host为rewrite全局变量,代表请求主机头字段或主机名
			rewrite ^/(.*)$ http://www.weq.com/$1 permanent;		#$1为正则匹配的内容,即域名后边的字符串
        }
        root   html;
        index  index.html index.htm;
    }
}

echo "192.168.229.90 www.ly.com www.weq.com" >> /etc/hosts

systemctl restart nginx					#重启服务

浏览器输入模拟访问 http://www.ly.com/test/index.html(虽然这个请求内容是不存在的)
会跳转到www.weq.com/test/index.html,查看元素可以看到返回301,实现了永久重定向跳转,而且域名后的参数也正常跳转

1.2  实例操作:基于域名跳转

1.2.1 修改主配置文件

基于Nginx Rewrite 与 Location 的网页匹配 跳转  

1.2.2 重启服务并添加映射关系

[root@www conf]# nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@www conf]# systemctl restart nginx.service 
[root@www conf]# vim /etc/hosts

127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.229.90 www.weq.com www.ly.com

基于Nginx Rewrite 与 Location 的网页匹配 跳转  

1.2.3 创建网页

[root@www ~]# cd /usr/local/nginx/html/
[root@www html]# ls
50x.html  error.png  index.html  meme.jpg
[root@www html]# mkdir test
[root@www html]# cd test/
[root@www test]# echo "<h1>this is test web!</h1>" > index.html
[root@www test]# ls
index.html
[root@www test]# cat index.html 
<h1>this is test web!</h1>

 

1.2.4 浏览器中访问测试

基于Nginx Rewrite 与 Location 的网页匹配 跳转

基于Nginx Rewrite 与 Location 的网页匹配 跳转

基于Nginx Rewrite 与 Location 的网页匹配 跳转

2、基于客户端 IP 访问跳转

2.1  基于客户端 IP 访问跳转的操作步骤

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

vim /usr/local/nginx/conf/nginx.conf
server {
	listen       80;
	server_name  www.ly.com;		#域名修改	
	charset utf-8;
	access_log  /var/log/nginx/www.ly.com-access.log;		#日志修改

	#设置是否合法的IP标记
    set $rewrite true;							#设置变量$rewrite,变量值为boole值true
    #判断是否为合法IP
	if ($remote_addr = "192.168.229.90"){		#当客户端IP为192.168.229.90时,将变量值设为false,不进行重写
        set $rewrite false;
    }
	#除了合法IP,其它都是非法IP,进行重写跳转维护页面
    if ($rewrite = true){						#当变量值为true时,进行重写
        rewrite (.+) /index.html;				#重写在访问IP后边插入/index.html,例如192.168.229.90/index.html
    }
    location = /index.html {
        root /var/www/html;						#网页返回/var/www/html/index.html的内容
    }
	
	location / {
        root   html;
        index  index.html index.htm;
    }
}

mkdir -p /var/www/html/
echo "<h1>this is busy working!</h1>" > /var/www/html/index.html
systemctl restart nginx

2.2 实例操作:基于客户端 IP 访问跳转

2.2.1 修改配置文件

[root@www html]# vim /usr/local/nginx/conf/nginx.conf

        listen       80;
        server_name  www.ly.com;

        charset utf-8;

        access_log  /var/log/nginx/www.ly.com.access.log;

        set $rewrite true;
            if ($remote_addr = "192.168.229.90") {
               set $rewrite false;
        }
           if ($rewrite = true) {
               rewrite (.+) /test.html;
        }

        location = /test.html {
            root   /var/www/html;
        }

        location / {
            root   html;
            index  index.html index.htm;
        }

基于Nginx Rewrite 与 Location 的网页匹配 跳转  

2.2.2 检查配置文件并重启服务

 

[root@www html]# nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@www html]# systemctl restart nginx.service 

 

基于Nginx Rewrite 与 Location 的网页匹配 跳转  

2.2.3  创建跳转后的网页目录和内容

基于Nginx Rewrite 与 Location 的网页匹配 跳转  

2.2.4 浏览器访问测试

本机访问

基于Nginx Rewrite 与 Location 的网页匹配 跳转

其他主机访问

访问之前做域名IP映射

基于Nginx Rewrite 与 Location 的网页匹配 跳转  

基于Nginx Rewrite 与 Location 的网页匹配 跳转  

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

3.1  基于旧域名跳转到新域名后面加目录的操作步骤

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

vim /usr/local/nginx/conf/nginx.conf
server {
	listen       80;
	server_name  bbs.ly.com;		#域名修改	
	charset utf-8;
	access_log  /var/log/nginx/bbs.ly.com-access.log;
	#添加
	location /test {
        rewrite (.+) http://www.ly.com/bbs$1 permanent;		#这里的$1为位置变量,代表/post
    }
	
	location / {
        root   html;
        index  index.html index.htm;
    }
}

mkdir -p /usr/local/nginx/html/bbs/post
echo "this is 1.html"  >> /usr/local/nginx/html/bbs/post/1.html
echo "192.168.229.90 bbs.ly.com www.ly.com"  >> /etc/hosts
systemctl restart nginx

使用浏览器访问 http://bbs.kgc.com/ test/1.html 跳转到 http://www.ly.com/bbs/test/1.html  

3.2 实例操作:基于旧域名跳转到新域名后面加目录

3.2.1  修改主配置文件

基于Nginx Rewrite 与 Location 的网页匹配 跳转

3.2.2  重启服务并创建网页文件

基于Nginx Rewrite 与 Location 的网页匹配 跳转

基于Nginx Rewrite 与 Location 的网页匹配 跳转

3.2.3  添加映射关系并使用浏览器访问测试

基于Nginx Rewrite 与 Location 的网页匹配 跳转

基于Nginx Rewrite 与 Location 的网页匹配 跳转

4、基于参数匹配的跳转

4.1  基于参数匹配的跳转的步骤

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

vim /usr/local/nginx/conf/nginx.conf
server {
	listen       80;
	server_name  www.ly.com;		#域名修改	
	charset utf-8;
	access_log  /var/log/nginx/ly.kgc.com-access.log;
	
	if ($request_uri ~ ^/100-(100|200)-(\d+).html$) {
        rewrite (.*) http://www.ly.com permanent;
    }

	location / {
        root   html;
        index  index.html index.htm;
    }


systemctl restart nginx

解释:

$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

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

4.2 实例操作:基于参数匹配的跳转

4.2.1 修改配置文件

基于Nginx Rewrite 与 Location 的网页匹配 跳转

基于Nginx Rewrite 与 Location 的网页匹配 跳转

4.2.2 浏览器访问测试

基于Nginx Rewrite 与 Location 的网页匹配 跳转

基于Nginx Rewrite 与 Location 的网页匹配 跳转

5、基于目录下所有 php 结尾的文件跳转

要求访问 http://www.ly.com/upload/123.php 跳转到首页。

5.1  基于目录下所有 php 结尾的文件跳转的操作步骤

vim /usr/local/nginx/conf/nginx.conf
server {
	listen       80;
	server_name  www.ly.com;		#域名修改	
	charset utf-8;
	access_log  /var/log/nginx/www.ly.com-access.log  main;
	
	location ~* /upload/.*\.php$ {
        rewrite (.+) http://www.ly.com permanent;
    }

	location / {
        root   html;
        index  index.html index.htm;
    }
}

systemctl restart nginx

浏览器访问 http://www.ly.com/upload/888.php 跳转到http://www.kgc.com页面。

5.2 实例操作:基于目录下所有 php 结尾的文件跳转

5.2.1 修改配置文件

基于Nginx Rewrite 与 Location 的网页匹配 跳转

基于Nginx Rewrite 与 Location 的网页匹配 跳转

5.2.2 浏览器访问测试

基于Nginx Rewrite 与 Location 的网页匹配 跳转

6、基于最普通一条 url 请求的跳转

6.1 基于最普通一条 url 请求的跳转的操作步骤

要求访问一个具体的页面如 http://www.ly.com/abc/888.html 跳转到首页

vim /usr/local/nginx/conf/nginx.conf
server {
	listen       80;
	server_name  www.ly.com;		#域名修改	
	charset utf-8;
	access_log  /var/log/nginx/www.ly.com-access.log;
	
    location ~* ^/abc/888.html {
        rewrite (.+) http://www.ly.com permanent;
    }

	location / {
        root   html;
        index  index.html index.htm;
    }
}

systemctl restart nginx

浏览器访问 http://www.ly.com/abc/888.html 跳转到http://www.ly.com页面。  

6.2 实例操作:基于最普通一条 url 请求的跳转

6.2.1 修改配置文件

基于Nginx Rewrite 与 Location 的网页匹配 跳转

基于Nginx Rewrite 与 Location 的网页匹配 跳转

6.2.2 浏览器访问测试  

基于Nginx Rewrite 与 Location 的网页匹配 跳转 

基于Nginx Rewrite 与 Location 的网页匹配 跳转

上一篇:Js前端传递json数组至服务器端并解析的实现。


下一篇:容易被忽略CSS特性