Showing posts with label https. Show all posts
Showing posts with label https. Show all posts

Saturday, March 9, 2019

Why it is important to use SSL

Read this:

https://www.sangfroidwebdesign.com/search-engine-optimization-seo/google-https-ranking/


SEO scanning tool for https errors:

https://www.linksspy.com/seo-tools/free-seo-ssl-scan/new

HTTPS response scanning tool:

https://httpstatus.io/


To redirect http to https with status 301

Put this .htaccess file inside the folder for the domain:


RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

Then, check the status here:

https://httpstatus.io/

Be sure to enable R=301 permanent redirect, good for SEO.
R=302 is temporary redirect, bad for SEO.

More information here:

https://www.namecheap.com/support/knowledgebase/article.aspx/9770/38/how-to-use-htaccess-to-redirect-to-https-in-cpanel#rule2