我有一个olddomain.com,需要指向newdomain.com
所以如果有人试图进入oldomain.com/w他们到了newdomain.com
我不想完全映射旧网址,以便我可以尝试使用
RewriteEngine On
Redirect 301 / http://www.newdomain.com
但如果我尝试使用
,它确实很有用oldomain.com/whatever
网址出现在broswer中:
newdomain.comwhatever
(没有/)
答案 0 :(得分:1)
这应该有效:
RewriteEngine On
RewriteRule ^(.*)$ http://newdomain.com/$1 [R=301,NC]