Nginx 重写问题,URL 之间带有问号

Nginx 重写问题,URL 之间带有问号

我需要转发 URLhttps://www.example.com/change/candidate/run/registration/?action=preregisterhttps://www.example.com/change/contact/us/,为此我定义了以下重定向规则

# Redirects to handle all of the URL patterns from the old site 
rewrite ^/lang/candidate/run/registration/?action=preregister$  https://www.example.com/change/contact/us/ permanent;

但由于中间有问号,所以它不起作用。

相关内容