Is it okay to send a 301 redirect from https (if n

2019-08-29 13:07发布

问题:

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}