阻止nginx传递查询字符串

时间:2019-04-25 10:23:45

标签: nginx nginx-config

我在重定向时遇到了问题

这是我的sites-available文件夹中的.conf文件,可通过nginx.conf主文件访问

server {
    listen       8080;
    server_name  localhost;
    root         /usr/local/var/www/landing-page/html;
    location / {

         rewrite ^/foo/(.*)? https://$host/bar redirect; 

}
    error_page 404 /404.html;
        location = /40x.html {
    }
    error_page 500 502 503 504 /50x.html;
        location = /50x.html {
    }
}

它允许这样的重定向

/ foo /?= query&query

重定向到

/ bar /?=查询&查询

我想摆脱这些。有什么办法可以从此位置区中做到这一点?

我看到了另一个答案,但是它需要未为服务器(所有节点)设置服务器的php

疯狂搜索,尚未找到答案

0 个答案:

没有答案