WEB开发网
开发学院服务器WEB服务器Nginx nginx 过滤请求URL参数及重定向 阅读

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的值如何,都会跳转到主页上

上一页  1 2 

Tags:nginx 过滤 请求

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接