系统相关
首页 > 系统相关> > Nginx中break和last的区别

Nginx中break和last的区别

作者:互联网

先说区别

Nginx 配置文件

server {
        listen 88;
        server_name _;
        location /break { # location 1
          rewrite ^/break/(.*)$ /bak/$1 break;
        }
        location /last {  # location 2
          rewrite ^/last/(.*)$  /bak/$1 last;
        }

        location /bak {  # location 3
          default_type text/html;
          return 200 $uri;
        }

}

访问 http://rumenz.com:88/break/one

命中location1,浏览器地址栏没有变,直接去找/nginx/html/bak/one文件,由于没有这个文件所以返回404。

浏览器

image-20210114152319867

Nginx错误(error.log)日志

/nginx/html/bak/one failed (2: No such file or directory)

break表示重写后停止不再匹配location块。

访问 http://rumenz.com:88/last/one

命中location2,浏览器地址栏没有变,重新匹配到location3
image-20210114152832329

last表示重写后跳到location块再次用重写后的地址匹配

breaklast的使用场景

break

文件下载,隐藏保护真实文件服务器。

location /down {
  rewrite ^/down/(.*)$ https://rumenz.com/file/$1 break;
}

last

接口地址改写,将https://rumenz.com/api/list改写成https://rumenz.com/newapi/list

location /api {
  rewrite ^/api/(.*)$ /newapi/$1 last;
}

location /newapi {
  default_type Application/json;
  return 200 '{"code":200,"msg":"ok","data":["JSON.IM","json格式化"]}';
}

关注微信公众号:【入门小站】,解锁更多知识点

标签:rumenz,last,break,Nginx,location,重写,bak
来源: https://www.cnblogs.com/rumenz/p/14284532.html