我想通过将此行添加到.htaccess文件,将abc.com
上的请求重定向到abc.jp
RewriteRule ^(.*)abc\.com(.*)$ $1abc.jp$2
但它没有用。太令人困惑......
答案 0 :(得分:1)
尝试使用RewriteCond
匹配域名,然后使用RewriteRule
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?abc.com$ [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^(.*) http://abc.jp$1 [NC,L,R=301]