Créer un fichier .htaccess et placez-y le code ci-dessous :
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mon_nom_de_domaine.com [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://mon_nom_de_domaine.com/$1 [R,L]
Autre méthode consistant à supprimer les WWW du http vers https :
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]