0

我想将 subdomain.example.com 和子域访问的所有可能的 URL(如 subdomain.example.com/somefolder/somefile.php)重定向到另一个域 example-two.com。htaccess可以吗?

4

1 回答 1

0

对于将 subdomain.example.com/any-address 重定向到 example-two.com 将此规则添加到您的 subdomain.example.com .htaccess 文件的顶部

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{HTTP_HOST} ^(www\.)?subdomain\.example\.com [NC]
    RewriteRule (.*) http://example-two.com/ [R=301,L]
</IfModule>

对于将 subdomain.example.com/any-address 重定向到 example-two.com/any-address 将此规则添加到您的 subdomain.example.com .htaccess 文件的顶部

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{HTTP_HOST} ^(www\.)?subdomain\.example\.com [NC]
    RewriteRule (.*) http://example-two.com/$1 [R=301,L]
</IfModule>
于 2019-08-08T18:45:44.740 回答