Pour rediriger vos URLs HTTP en HTTPS, ajoutez ceci dans le fichier .htaccess à la racine de votre site :
RewriteEngine on RewriteCond %{HTTPS} !=on RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
Et si comme moi vous êtes chez OVH, voici le code à utiliser :
RewriteCond %{SERVER_PORT} 80 RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]