nginx 过滤请求URL参数及重定向
2012-05-14 16:19:20 来源:WEB开发网核心提示:编辑配置nginx的配置文件: location ^~/vm/ivr { if ($args ~* "destId=12590641637") { rewrite /vm/ivr /index.html;
编辑配置nginx的配置文件:
location ^~/vm/ivr {
if ($args ~* "destId=12590641637")
{
rewrite /vm/ivr /index.html;
}
proxy_pass http://localhost;
include /usr/local/nginx/conf/proxy.conf;
}
^~ 这里是只要是以/vm/ivr开头的,都会经过这个过滤
~* 是不区分大小写
最后两行是必须有,否则所有以/vm/ivr不管destId的值如何,都会跳转到主页上
更多精彩
赞助商链接