请假一个关于 nginx 跳转配置问题
原地址:
http://abc.com/test/play?id=123
期望
http://xyz.com/play?id=123
但是配置一直不能获取到参数
配置如下
location ^~/test/play {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://xyz.com/play?$request_uri;
proxy_redirect off;
proxy_cookie_path / /;
}
试了多种方式,都是不行