在htaccess中有问题重定向
我想拥有的是
如何在.htaccess
中做到这一点?
谢谢
答案 0 :(得分:0)
第一次重写检查请求是否是根(/)示例https://domain1.com/,第二个规则重写其他所有内容。请检查一下。
RewriteEngine On
RewriteCond %{REQUEST_URI} ^\/$
RewriteRule ^(.*)$ https://domain2.com/test [L,R=301]
RewriteCond %{HTTP_HOST} ^domain1\.com [NC]
RewriteRule (.*) https://domain2.com/$1 [R=301,L]