.htaccess替换部分域名

时间:2013-02-01 18:24:51

标签: .htaccess mod-rewrite

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

1 个答案:

答案 0 :(得分:2)

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

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