在NGINX中,可以使用location指令和rewrite指令来携带参数进行重定向。
首先,可以使用location指令根据请求的URL匹配到一个特定的位置块。然后,在位置块中使用rewrite指令将请求重定向到另一个URL,并携带参数。
下面是一个示例配置,演示如何使用NGINX携带参数进行重定向:
server { listen 80; server_name example.com; location /old-url { rewrite ^/old-url/(.*)$ /new-url/$1 last; } location /new-url { # 你的处理逻辑 # $1 表示原始URL中的第一个参数 # 可以根据需要使用更多的参数变量,如$2, $3等 }
}