知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

proxy_pass与正则表达式

发布时间:2014-09-05 15:19:13作者:知识屋

proxy_pass与正则表达式
 
我尝试使用if , location 处理部分URL, 然后放行到 proxy_pass 反复尝试都提示下面的错误  www.zhishiwu.com  
 
nginx: [emerg] "proxy_pass" cannot have URI part in location given by regular expression, or inside named location, or inside "if" statement, or inside "limit_except" block in /etc/nginx/conf.d/info.mydomain.com.conf:112?
 
nginx: configuration file /etc/nginx/nginx.conf test failed
 
最后发现使用$request_uri变量可以解决上述问题.  www.zhishiwu.com  
 
       if ( $request_uri ~ "^//w+/.xml$") {
            proxy_pass http://www.mydomain.com/xml$request_uri;
break;
       }
 
       if ( $request_uri ~ "^/public/datas//w+/.xml$") {
            proxy_pass http://www.mydomain.com/$request_uri;
break;
       }
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜