nginx 配置proxy_pass URL末尾加与不加/(斜线)的区别
Posted Star-Hitian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 配置proxy_pass URL末尾加与不加/(斜线)的区别相关的知识,希望对你有一定的参考价值。
nginx在配置proxy_pass的时候 URL结尾加斜线(/)与不加的区别和注意事项
假设访问路径的 /pss/bill.html
加/斜线的情况
location /pss/ { proxy_pass http://127.0.0.1:18081/; }
被代理的真实访问路径为:http://127.0.0.1:18081/bill.html
不加/斜线的情况
location /pss/ { proxy_pass http://127.0.0.1:18081; }
被代理的真实访问路径为:http://127.0.0.1:18081/pss/bill.html
以上是关于nginx 配置proxy_pass URL末尾加与不加/(斜线)的区别的主要内容,如果未能解决你的问题,请参考以下文章
nginx配置之proxy_pass路径加斜杠/以及包含路径的区别