Redirection HTTP vers HTTPS :
Ce tuto est basé sur les offres d'hébergement web Cpanel chez OuiHeberg
Pour commencer vous devez éditer ou créer un fichier .htaccess à la racine de votre site.
Pour une redirection simple du trafic, ajoutez y le code suivant:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
Attention: Si vous possédez plusieurs domaines supplémentaires dans votre public_html, la redirection causera problème, elle redirigera tout le trafic en https.
Ce code ci vous permettra de rediriger, pour un seul domaine :
RewriteEngine On
RewriteCond %{HTTP_HOST} ^votredomaine\.fr[NC]
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI}