It is possible to force a HTTPS connectinon on your website by adding the following rules to your website's  .htacess file:

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

The .htacess file needs to be placed inside the site's root folder. Depending on how your website was setup, whether it was a sub folder for example, the .htaccess file should be placed in the correct corresponding folder.
You can also edit or create the .htacess file through FTP or the file manager available in your control panel.
Was this answer helpful? 1 Users Found This Useful (1 Votes)