Si Ud. desea que el visitante de su site cuando se acceda sea redirigido a un protocolo https para utilizar el certificado SSL, Ud. puede agregar el siguiente código en tu .htaccess:
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://sudominio.com.mx/$1 [R,L]
o
RewriteEngine On
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^www\. [NC]
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]
RewriteRule ^ https://%1%{REQUEST_URI} [L,NE,R=301]
Si tiene dominios adicionales registrados en su panel de control, debe hacer la redirección https usando:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^sudominio
\.com\.mx[NC]
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI}