RewriteEngine On RewriteCond %{HTTPS} =off RewriteRule ^(.*) https://%{HTTP_HOST}%{REQUEST_URI} [NC] code example
Example: force .htaccess
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]