首页 > 其他 > 详细

Nginx配置proxy_pass转发的/路径问题

时间:2018-06-23 10:24:09      阅读:165      评论:0      收藏:0      [点我收藏+]

在nginx中配置proxy_pass时,如果是按照^~匹配路径时,要注意proxy_pass后的url最后的/,当加上了/,相当于是绝对根路径,则nginx不会把location中匹配的路径部分代理走;如果没有/,则会把匹配的路径部分也给代理走。

例如访问http://guuyoog.com/a/index.html

location ^~ /a/ 

proxy_pass http://test.com/
}

-->  http://test.com/index.html

 

location ^~ /a/ 

proxy_pass http://test.com
}

-->  http://test.com/a/index.html

Nginx配置proxy_pass转发的/路径问题

原文:https://www.cnblogs.com/guuyoog/p/9216451.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!