You can force an HTTPS connection on your website by adding these rules in your website's .htaccess file:
1
2
3
|
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
|
You can force an HTTPS connection on your website by adding these rules in your website's .htaccess file:
1
2
3
|
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
|