Nginx:如何重定向某个位置的位置?

时间:2014-04-07 23:54:36

标签: nginx

我正在尝试将http://test.com/supporthttp://test.com/support/重定向到https://support.test.com我需要将http://test.com/support/*的任何内容重定向到https://support.test.com/*

这是我现在的代码,它是下半部分,但不是第一部分......任何想法都会有所帮助。

    location /support {
            proxy_pass         http://support.test.com;
            proxy_set_header Host "support.test.com";
            proxy_redirect off;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }

我认为在位置块内必须有if语句,但我不是100%肯定。

1 个答案:

答案 0 :(得分:0)

您是否尝试过将位置更改为正则表达式?

location ~* ^/support(?:/|\z) {
        proxy_pass ...
}