将URL重定向到新URL

时间:2011-04-16 09:01:55

标签: apache redirect apache2 routes traffic

如何将所有来自test /(.*)的流量重定向到http://newdomain.com/test/ $ 1?我尝试了这个,但这不起作用:RewriteRule ^test/(.*) http://domain.com/test/$1 [R=301,L]

2 个答案:

答案 0 :(得分:1)

在重写规则之前添加第RewriteEngine On行。

答案 1 :(得分:1)

我认为,您需要在规则的开头添加斜杠:

RewriteRule ^/test/(.*) http://domain.com/test/$1 [R=301,L]