• Nginx Rewrite


    Nginx Rewrite

    Rewrite跳转场景

    URL更规范、合理

    企业会将动态URL地址伪装成静态地址提供服务

    网址换新域名后,让旧的访问跳转到新的域名上

    服务端某些业务调整

    Rewrite实际场景
    Nginx跳转需求的实现方式

    使用rewrite进行匹配跳转----------------》防盗链

    使用if匹配全局变量后跳转----------------》Nginx服务本身的全局变量

    使用location匹配再跳转-------------------》匹配访问URL路径,location匹配本地的重写以及跨服务的跳转

    rewrite放在server{},if{},location{}段中

    location只对域名后边的除去传递参数外的字符串起作用

    对域名或参数字符串

    使用if全局变量匹配

    使用proxy_pass方向代理

    Nginx正则表达式
    常用的正则表达式元字符
    字符说明
    |或运算符
    ^匹配输入字符串的起始位置
    $匹配输入字符串的结束位置
    *匹配前面的字符零次或多次。如“ol*”能匹配“o”及“ol”、“oll”
    +匹配前面的字符一次或多次。如“ol+”能匹配“ol”及“oll”、“olll”,但不能匹配“o”
    ?匹配前面的字符零次或一次,例如“do(es)?”能匹配“do”或者“does”,”?”等效于”{0,1}”
    .匹配除“\n”之外的任何单个字符,若要匹配包括“\n”在内的任意字符,请使用诸如“[.\n]”之类的模式
    \将后面接着的字符标记为一个特殊字符或一个原义字符或一个向后引用。如“\n”匹配一个换行符,而“$”则匹配“$”
    \d匹配纯数字
    {n}重复 n 次
    {n,}重复 n 次或更多次
    {n,m}重复 n 到 m 次
    []定义匹配的字符范围
    [c]匹配单个字符 c
    [a-z]匹配 a-z 小写字母的任意一个
    [a-zA-Z0-9]匹配所有大小写字母或数字
    ()表达式的开始和结束位置
    Location
    location大致可以分为三类
    精准匹配:location = / {...}
    一般匹配:location / {...} 
    正则匹配:location ~ / {...}
    
    • 1
    • 2
    • 3
    location常用的匹配规则
    = :进行普通字符精确匹配,也就是完全匹配。
    ^~ :表示普通字符匹配。使用前缀匹配。如果匹配成功,则不再匹配其它 location。
    ~ :区分大小写的匹配。
    ~* :不区分大小写的匹配。
    !~ :区分大小写的匹配取非。
    !~* :不区分大小写的匹配取非。
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    location优先级
    首先精确匹配 =
    其次前缀匹配 ^~
    其次是按文件中顺序的正则匹配 ~或~*
    然后匹配不带任何修饰的前缀匹配
    最后是交给 / 通用匹配
    
    • 1
    • 2
    • 3
    • 4
    • 5
    优先级总结
    (location = 完整路径) > (location ^~ 路径) > (location ~,~* 正则顺序) > (location 部分起始路径) > (location /)
    
    • 1
    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 {}     www.baidu.com/
    匹配任何以 /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 相比,正则优先级更高
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    location匹配
    首先看 优先级:精确>前缀>正则>一般>通用
    优先级相同:正则看上下顺序,上面的优先;一般匹配看长度,最长匹配的优先
    精确、前缀、正则、一般 都没有匹配到,最后再看通用匹配
    
    • 1
    • 2
    • 3
    三个匹配规则定义
    直接匹配网站根

    第一个必选规则直接匹配网站根,通过域名访问网站首页比较频繁,使用这个会加速处理,比如说官网。

    可以是一个静态首页,也可以直接转发给后端应用服务器。

    location = / {
        root   html;
    	index  index.html index.htm;
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    处理静态文件请求

    第二个必选规则是处理静态文件请求,这是nginx作为http服务器的强项

    有两种匹配模式,目录匹配后或后缀匹配,任选其一或搭配使用。

    目录匹配:

    location ^~ /static/ {
      root /webroot/static/;
    }
    
    • 1
    • 2
    • 3

    后缀匹配:

    location ~* \.(html|gif|jpg|jpeg|png|css|js|ico)$ {
       root /webroot/res/;
    }
    
    • 1
    • 2
    • 3
    通用规则

    第三个规则就是通用规则,比如用来转发带.php、.jsp后缀的动态请求到后端应用服务器

    非静态文件请求就默认是动态请求

    location / {
         proxy_pass http://tomcat_server
    }
    
    • 1
    • 2
    • 3
    rewrite
    rewrite功能就是,使用nginx提供的全局变量或自己设置的变量,结合正则表达式和标记位实现URL重写以及重定向。

    比如:更换域名后需要保持旧的域名就能跳转到新的域名上、某网页发生改变需要跳转到新的页面、网站防盗链等等需求。

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

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

    rewrite跳转实现:

    Nginx:通过ngx_http_rewrite_module 模块支持URL重写、支持if条件判断,但不支持else

    跳转:从一个location跳转到另一个location,循环最多可以执行10次,超过后nginx将返回500错误

    PCRE支持:prel兼容正则表达式的语法规则匹配

    重写模块set指令:创建新的变量并设其值

    rewrite执行顺序如下:

    1、执行server块里面的rewrite指令。

    2、执行location匹配。

    3、执行选定的location中的rewrite指令。

    语法格式:
    rewrite   [flag];
    
    • 1

    regex:表示正则匹配规则

    replacement:表示跳转后的内容

    flag:表示rewrite支持的flag标记

    flag标记说明:

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

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

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

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

    rewrite和location区别

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

    rewrite 示例:
    (1)基于域名的跳转

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

    vim /usr/local/nginx/conf/nginx.conf
    
    server {
    	listen       80;
    	server_name  www.dapao.com;		#域名修改	
    	charset utf-8;
    	access_log  /var/log/nginx/www.dapao.com-access.log;		#日志修改
    	location / {
    	#添加域名重定向
            if ($host = 'www.dapao.com'){						#$host为rewrite全局变量,代表请求主机头字段或主机名
    			rewrite ^/(.*)$ http://www.dabao.com/$1 permanent;	#$1为正则匹配的内容,即“域名/”之后的字符串
            }
            root   html;
            index  index.html index.htm;
        }
    }
    echo "20.0.0.55 www.dapao.com www.dabao.com" >> /etc/hosts
    
    #创建test/1.html
    cd /usr/local/nginx/html
    mkdir test
    echo "xin de yu ming" > test/1.html
    
    systemctl restart nginx
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    image-20220725151118768

    image-20220725152534143

    image-20220725153001432

    image-20220725152700144

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

    image-20220725154834143

    ----》跳转:

    image-20220725154904327

    #创建test/1.html
    cd /usr/local/nginx/html
    mkdir test
    echo "xin de yu ming" > test/1.html
    
    • 1
    • 2
    • 3
    • 4

    image-20220725155518105

    (2)基于客户端IP访问跳转

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

    vim /usr/local/nginx/conf/nginx.conf
    
    server {
    	listen       80;
    	server_name  www.dapao.com;		#域名修改	
    	charset utf-8;
    	access_log  /var/log/nginx/www.dapao.com-access.log;		#日志修改
    
    	#设置是否合法的IP标记
        set $rewrite true;							#设置变量$rewrite,变量值为boole值true
        #判断是否为合法IP
       #remode_addr表示客户端
    	if ($remote_addr = "20.0.0.55"){		#当客户端IP为20.0.0.55时,将变量值设为false,不进行重写
            set $rewrite false;
        }
    	#除了合法IP,其它都是非法IP,进行重写跳转维护页面
        if ($rewrite = true){						#当变量值为true时,进行重写
            rewrite (.+) /weihu.html;				#将域名后边的路径重写成/weihu.html,例如www.dapao.com/weihu.html
        }
        location = /weihu.html {
            root /var/www/html;						#网页返回/var/www/html/weihu.html的内容
        }
    	
    	location / {
            root   html;
            index  index.html index.htm;
        }
    }
    
    
    mkdir -p /var/www/html/
    echo "

    We are maintaining now!

    " > /var/www/html/weihu.html mkdir -p /var/www/html echo "zheng zai wei hu zhong" > /var/www/html/weihu.html systemctl restart nginx 只有IP为20.0.0.55能正常访问,其他地址都是维护页面
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37

    image-20220725161120685

    image-20220725161522826

    只有IP为20.0.0.55能正常访问,其他地址都是维护页面

    image-20220725161843317

    ip为20.0.0.58访问20.0.0.55,维护页面

    image-20220725163119533

    如果rewrite (.+) /weihu.html;改写rewrite (.+) /weihu.html permanent;的话,如果是非20.0.0.55的主机访问会使浏览器修改请求访问的URL成http://www.dapao.com/weihu/html再请求访问,这样就会进入一直在rewrite的死循环,访问请求会一直被重写成http://www.dapao.com/weihu.hyml再请求访问。

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

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

    vim /usr/local/nginx/conf/nginx.conf
    server {
    	listen       80;
    	server_name  bbs.dapao.com;		#域名修改	
    	charset utf-8;
    	access_log  /var/log/nginx/www.dapao.com-access.log;
    	#添加
    	location /post {
            rewrite (.+) http://www.dapao.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 "20.0.0.55 bbs.dapao.com" >> /etc/hosts
    
    systemctl restart nginx
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24

    image-20220725165400318

    image-20220725165538081

    image-20220725170347868

    使用浏览器访问http://bbs.dapao.com/post/1.html跳转到http://www.dapao.com/bbs/post/1.html

    image-20220725170514290

    基于参数匹配跳转

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

    vim /usr/local/nginx/conf/nginx.conf
    server {
    	listen       80;
    	server_name  www.dapao.com;		#域名修改	
    	charset utf-8;
    	access_log  /var/log/nginx/www.dapao.com-access.log;
    	
    	if ($request_uri ~ ^/100-(100|200)-(\d+).html$) {    #\d代表匹配数字,+代表匹配1个或多个
            rewrite (.+) http://www.dapao.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
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22

    image-20220725171451840

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

    #a-b-c

    a输入100

    b输入100或200

    c输入任意数

    image-20220725172102650

    vim /usr/local/nginx/conf/nginx.conf
    server {
    	listen       80;
    	server_name  www.dapao.com;		#域名修改	
    	charset utf-8;
    	access_log  /var/log/nginx/www.dapao.com-access.log;
    	
    	location ~ /100-(100|200)-(\d+).html$ {
            rewrite (.+) http://www.dapao.com permanent;
            }
    
    	location / {
            root   html;
            index  index.html index.htm;
        }
    }
    systemctl restart nginx
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17

    image-20220725190237151

    image-20220725190123632

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

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

    vim /usr/local/nginx/conf/nginx.conf
    server {
    	listen       80;
    	server_name  www.dapao.com;		#域名修改	
    	charset utf-8;
    	access_log  /var/log/nginx/www.dapao.com-access.log;
    	
    	location ~* /upload/.*\.php$ {
            rewrite (.+) http://www.dapao.com permanent;
        }
    
    	location / {
            root   html;
            index  index.html index.htm;
        }
    }
    
    
    systemctl restart nginx
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20

    image-20220725172938827

    image-20220725173352797

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

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

    vim /usr/local/nginx/conf/nginx.conf
    server {
    	listen       80;
    	server_name  www.dapao.com;		#域名修改	
    	charset utf-8;
    	access_log  /var/log/nginx/www.dapao.com-access.log;
    	
        location ~* ^/abc/123.html {
            rewrite (.+) http://www.dapao.com permanent;
        }
    
    	location / {
            root   html;
            index  index.html index.htm;
        }
    }
    
    
    systemctl restart nginx
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20

    image-20220725174020004

    image-20220725181852618

    vim /usr/local/nginx/conf/nginx.conf
    server {
    	listen       80;
    	server_name  www.dapao.com;		#域名修改	
    	charset utf-8;
    	access_log  /var/log/nginx/www.dapao.com-access.log;
    	
       if ($request_uri ~^/abc/123.html){
           rewrite (.+) http://www.dapao.com permanent;
            }
    
    
    	location / {
            root   html;
            index  index.html index.htm;
        }
    }
    
    
    systemctl restart nginx
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20

    image-20220725185430795

    inx

    
    [外链图片转存中...(img-UDPGQeEm-1659073631708)]
    
    [外链图片转存中...(img-l2TZ6MFj-1659073631708)]
    
    
    • 1
    • 2
    • 3
    • 4
    • 5

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

    if ($request_uri ~^/abc/123.html){
    rewrite (.+) http://www.dapao.com permanent;
    }

    location / {
        root   html;
        index  index.html index.htm;
    }
    
    • 1
    • 2
    • 3
    • 4

    }

    systemctl restart nginx

    
    [外链图片转存中...(img-v6AmhWGc-1659073631708)]
    
    ![image-20220725185204655](https://img-blog.csdnimg.cn/img_convert/431d121ffef58b8eaca883e762c316b0.png)
    
    • 1
    • 2
    • 3
    • 4
  • 相关阅读:
    缓存一致性,删除缓存,写入缓存,缓存击穿,缓存穿透,缓存雪崩
    FS2K人脸素描属性识别
    左神算法(一)上修改版
    ssm小微企业人事管理系统的设计与实现毕业设计源码261630
    【VictoriaMetrics】单机版配置
    辉芒微IO单片机FT60F210-URT
    常用Linux命令详细总结
    【MATLAB教程案例17】基于NSGAII多目标优化算法的matlab仿真及应用
    Typescript基本类型---下篇
    在架构组工作是种什么体验?今天大鸡腿带你体验下~
  • 原文地址:https://blog.csdn.net/m0_68295979/article/details/126054173