You can enforce SSL on your website by setting up a .htaccess with the following rules:

RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Was this answer helpful? 0 Users Found This Useful (1 Votes)