Htaccess:从旧域重定向到新域

时间:2015-04-20 12:16:12

标签: .htaccess

我有一个olddomain.com,需要指向newdomain.com

所以如果有人试图进入oldomain.com/w他们到了newdomain.com

我不想完全映射旧网址,以便我可以尝试使用

RewriteEngine On
Redirect 301 / http://www.newdomain.com

但如果我尝试使用

,它确实很有用
oldomain.com/whatever  

网址出现在broswer中:

newdomain.comwhatever 

(没有/)

1 个答案:

答案 0 :(得分:1)

这应该有效:

RewriteEngine On
RewriteRule ^(.*)$ http://newdomain.com/$1 [R=301,NC]