htaccess仅重定向根域

时间:2014-04-29 10:37:41

标签: regex apache .htaccess mod-rewrite

我想将我的域名从一个站点重定向到另一个站点。如果没有指定其他子页面,我只希望应用规则

EG:

www.example.com 

会被重定向

www.example.com/folder/page.php

不会被重定向

我所拥有的代码可以捕获所有这些并不是我想要的

RewriteCond %{HTTP_HOST} ^oldsite.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.oldsite.com [NC]
RewriteRule ^(.*)$ http://newsite.com/folder/$1 [L,R=301]

1 个答案:

答案 0 :(得分:2)

您可以使用:

RewriteCond %{HTTP_HOST} ^(www\.)?oldsite\.com [NC]
RewriteRule ^/?$ http://newsite.com/folder/ [L,R=301]