Questa guida ti spiega come forzare tutte le connessioni al sito in HTTPS tramite il file .htaccess
Per reindirizzare tutte le connessioni HTTP in HTTPS è necessario aggiungere le seguenti righe al file .htaccess che si trova nella cartella "public_html" del tuo hosting web:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Il file .htaccess può essere modificato tramite Gestione File oppure trasferito mediante il client FTP.