首页 > 手机 > vivo > 浅谈nginx反向代理中神奇的斜线

浅谈nginx反向代理中神奇的斜线

来源:整理 时间:2022-02-12 16:29:23 编辑:飘云 手机版

nginx B收到的请求:/bar//api

案例7

nginx A配置:

location /foo/ {
  proxy_pass http://192.168.1.56/bar;
}

nginx B收到的请求:/barapi

案例8

nginx A配置:

location /foo {
  proxy_pass http://192.168.1.56/bar;
}

nginx B收到的请求:/bar/api

看到这里是不是都晕了呢,其实是有规律的

现在把这些案例按表格排列起来,结果表示nginx B收到的请求

文章TAG:nginx反向代理斜线nginx斜线

最近更新