You can enforce SSL on your website by adding this to your .htacess
<IfModule mod_headers.c>
#Redirect http to https
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
You can enforce SSL on your website by adding this to your .htacess
<IfModule mod_headers.c>
#Redirect http to https
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>