I have my website hosted on the HTTP protocol, but my hosting service provides a default page when accessed through HTTPS. Since I'm not using SSL, from an SEO perspective, which one is more correct? a) toggle https for my website and do a 301 redirect to http://? b) just leave it like that (default https page from the web hosting co)
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
A would be the cleanest solution but it shouldn't really matter. Who, besides yourself, will be trying the https page?
回答2:
I've seen problems with https vs http for websites with little domain authority, or for websites which link to a checkout with https and then link back out to https instead of http.
We recommend clients to 301 to the http version just in case this causes issues.
Try this Mod Rewrite code:
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI}