Using the following code in your .htaccess file automatically redirects visitors to the HTTPS version of your site:

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

If you have an existing .htaccess file:

  • Do not duplicate RewriteEngine On.
  • Make sure the lines beginning RewriteCond and RewriteRule immediately follow the already-existing RewriteEngine On.

Originally posted on February 8, 2017 @ 7:45 pm

4 comments

    1. Yes, it will work without you paying for SSL
      Meanwhile, you need to confirm from your hosting provider if the AutoSSL is activated in your cPanel account

Leave a Reply to PHILMOREHOST Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.