我想将 .domain.com / 重定向到 .otherdomain.com / 和domain.com/*到otherdomain.com/*,它位于另一台服务器上。
另外,我希望地址栏更改为新域
例如:hi.domain.com/there - > hi.otherdomain.com/there
我找到了一些.htaccess的例子,但不能同时制定这两个规则。
我该怎么做?
谢谢!
答案 0 :(得分:1)
您可以在根目录中的.htaccess中尝试此操作。
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(.+\.)?domain\.com$
RewriteRule ^(.*)$ http://%1otherdomain.com/$1 [R=301,L]