仅使用htaccess重定向基本URL

时间:2012-02-23 18:14:51

标签: apache .htaccess redirect

我想将基本网址重定向到外部网站。

例如,我希望example.com重定向到anotherdomain.com,但我不希望重定向example.com/path

到目前为止,example.com/path重定向到anotherdomain.com/path。 :(

编辑:

首先,谢谢你的帮助! example.com现在重定向到another.com而不影响example.com的子路径。

但是,理想情况下,m.example.com不会重定向到another.com。所以它只是example.com重定向到another.com

1 个答案:

答案 0 :(得分:9)

将其添加到.htaccess中的DocumentRoot。我假设您在服务器上只托管一个域。

RewriteEngine on
RewriteBase /

RewriteCond %{HTTP_HOST} !^m\.
RewriteRule ^$ http://anotherdomain.com [R,L]