我想将基本网址重定向到外部网站。
例如,我希望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
。
答案 0 :(得分:9)
将其添加到.htaccess
中的DocumentRoot
。我假设您在服务器上只托管一个域。
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} !^m\.
RewriteRule ^$ http://anotherdomain.com [R,L]