force www and https htaccess code example
Example 1: force http to https htaccess
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https:
Example 2: https and www htaccess redirecr
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule .* https:
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule .* https:
Example 3: force http to https htaccess
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https:
Example 4: force https htaccess
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https: