我目前正在使用以下重定向规则。
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domainexample.co.uk [OR]
RewriteCond %{HTTP_HOST} ^www.domainexmaple.co.uk
RewriteRule ^(.*)$ https://domainexamplenew.com/$1
我想添加一个例外。对于GSC html验证文件,例如googlee08e8ab5c95d7b8d.html - 只是无法让它运作
感谢任何帮助/建议,
约翰
答案 0 :(得分:0)
你可能在重定向中有无限循环。
您应该在条件和规则中使用相同的域名。
现在当用户在domainexamplenew.com上打开页面时,它会一次又一次地重定向到domainexamplenew.com。
如果您想从domainexamplenew.co.uk重定向到domainexamplenew.com,那么您应该在条件下更改域名。
例如
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domainexample.com [OR]
RewriteCond %{HTTP_HOST} ^www.domainexmaple.com
RewriteRule ^(.*)$ https://domainexamplenew.com/$1