Über folgende kleine Einstellung in der .htaccess – Datei kann man automatisch von http auf https umleiten:

RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}/$1 [R=301,L]

oder

RewriteEngine On
RewriteCond %{SERVER_PORT}   !^443$
RewriteRule  (.*)  https://%{HTTP_HOST}/$1   [L]

Umleitung zu HTTPS via Hatzen