Nginx重写规则不适用于子域

时间:2015-03-16 11:39:02

标签: nginx

我想重定向这样的网址:

  http://example.com/tmcontent/comprehension/el_semenario.mp3

到此:

  http://static.example.com/tmcontent/comprehension/el_semenario.mp3

目前我正在这样做

  rewrite /(tmcontent.*)$  http://static.example.com/$1 redirect;

但遗憾的是没有用。

1 个答案:

答案 0 :(得分:1)

location /tmcontent {
    return 301 http://static.example.com/$request_uri;
}