我想重定向这样的网址:
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;
但遗憾的是没有用。
答案 0 :(得分:1)
location /tmcontent {
return 301 http://static.example.com/$request_uri;
}