1

http​://sub.A.com/some.htmlhttp​://sub.B.com/some.html

并且

http​://A.com/some.htmlhttp​://B.com/some.html


基本上只是将A重定向到B

.htaccess 文件仅在A.com下

4

1 回答 1

2
RewriteCond %{HTTP_HOST} ^([^.]*\.)?A.com$
RewriteRule ^(.*) http://%1B.com/$1 [R=301,L]

匹配有或没有前导“子”。并根据问题重定向,保留“子”。如果它存在。匹配第三级域中的任何内容。

于 2013-02-01T22:57:28.300 回答