NGINX:如何使用 URL 中的参数重定向域名?

NGINX:如何使用 URL 中的参数重定向域名?

我一直在尝试使用 URL 重写将 URL 重定向到另一个域。以下是我的nginx.conf文件:

worker_processes  1;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;


    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;
    server {
            listen       8070;
            server_name  www.example.com;
            rewrite ^/v1/([0-9]+).html http://www.example.com/v1?exid=$1;


            location ~ /v1/([0-9]+) {
                return 301 http://dev.example1.com/v1?exid==$1;
            }
        }
}

我已经尝试了很长时间,但仍然找不到合适的解决方案。

注意:如果我尝试上述操作,但没有发生预期的重定向,则不会出现任何错误。我希望此 URL 被重定向 http://example.com/v1/68740.html---至--->http://dev.example1.com/v1?exid=68740

提前致谢。

答案1

尝试以下配置:


server {
  listen 8070;
  server_name www.example.com;
  rewrite_log on;

  location ~^/v1/([\d]+)\.html$ {
    return 301 http://dev.example1.com/v1?exid=$1;
  }
}

如果要调试 ngx_http_rewrite_module 的配置,请将 rewrite_log 指令设置为 on。有关 rewrite_log 的详细信息:

http://nginx.org/en/docs/http/ngx_http_rewrite_module.html#rewrite_log

您最好检查 access_log,最后您的 nginx 返回(重定向)的 URL。

相关内容