1. 首页
  2. 数据库
  3. 其它
  4. nginx配置proxy_pass中url末尾带/与不带/的区别详解

nginx配置proxy_pass中url末尾带/与不带/的区别详解

上传者: 2021-01-15 16:12:35上传 PDF文件 33.87KB 热度 15次
nginx配置proxy_pass时url末尾带“/”与不带“/”的区别如下: 注意:当location为正则表达式匹配模式时,proxy_pass中的url末尾是不允许有”/”的,因此正则表达式匹配模式不在讨论范围内。 proxy_pass配置中url末尾带/时,nginx转发时,会将原uri去除location匹配表达式后的内容拼接在proxy_pass中url之后。 测试地址:http://192.168.171.129/test/tes.jsp 场景一: location ^~ /test/ { proxy_pass http://192.168.171.129:8080/
用户评论