Knowledgebase

How to Redirect Website from HTTP to HTTPS? Print

  • 5

 

You may need to create a .htaccess file, and you can use your control panel's File Manager under public_html folder.

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.

 

 

 


Was this answer helpful?
« Back