创建附加域后,我在添加重定向部分的cpanel中遇到此错误:
There was an error adding the redirect. Redirecting "https://example.com"
will cause a redirection loop because "http://.*/", which is located at
"/home/folder/", is above "https://example.com", which is located at
"/home/folder/"
最好通过cpanel,目标是仅出于301 SEO的目的而通过301重定向进行重定向,并将主域重定向到附加域。如何修复此循环?谢谢!
您可以通过.htaccess使用
使用此代码编辑:
#Force www:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yourdomain.com [NC]
RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [L,R=301,NC]
用您的域名更改yourdomain.com。这对我有用。