Jump to content

Rediriger HTTP vers HTTPS


ronanlionti

Recommended Posts

Bonjour, 

J'espère que vous allez bien. 

Pour le moment, mon site est présent sur deux adresses, une HTTP et une HTTPS. 

En me renseignant j'ai trouvé qu'il fallait ajouter une ligne dans mon fichier .htaccess pour rediriger le HTTP vers le HTTPS

image.png.601a8bc57d37348d02b17159e279dd0f.png

https://www.codeur.com/blog/redirection-https-automatique/

 

Cependant je ne sais pas où je dois rentrer cette redirection. 

Auriez vous l'amabilité de m'indiquer si  vous avez une solution à mon problème ? 

Je vous souhaites une excellente journée 

Link to comment
Share on other sites

Hi There Add Following in .htaccess will fix it

RewriteEngine On

RewriteCond %{HTTPS} off

RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

FOR SPECIFIC DOMAIN:

RewriteEngine On

RewriteCond %{HTTP_HOST} ^yourdomain1.com [NC]

RewriteCond %{HTTPS} off

RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

Edited by Avengers (see edit history)
Link to comment
Share on other sites

20 minutes ago, Avengers said:

Hi There Add Following in .htaccess will fix it

RewriteEngine On

RewriteCond %{HTTPS} off

RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

FOR SPECIFIC DOMAIN:

RewriteEngine On

RewriteCond %{HTTP_HOST} ^yourdomain1.com [NC]

RewriteCond %{HTTPS} off

RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

Hi thanks,

Where should i put this in my .htaccess file ? 

Link to comment
Share on other sites

il y a 35 minutes, ronanlionti a dit :

Oui ce dernier existe bien 

Voici les liens

www.mespetitsplats-lyon.fr 

https://mespetitsplats-lyon.fr/

 

ok, donc vous souhaitez rediriger un nom de sous domaine vers le nom de domaine cela n'a aucun rapport avec https.

Plutôt que de le faire en htaccess faites le par DNS voyez avec votre hébergeur commet réaliser cela.

https://docs.ovh.com/fr/domains/redirection-nom-de-domaine/

Link to comment
Share on other sites

4 minutes ago, Mediacom87 said:

ok, donc vous souhaitez rediriger un nom de sous domaine vers le nom de domaine cela n'a aucun rapport avec https.

Plutôt que de le faire en htaccess faites le par DNS voyez avec votre hébergeur commet réaliser cela.

https://docs.ovh.com/fr/domains/redirection-nom-de-domaine/

D'accord, merci pour votre aide. Veuillez m'excuser pour mon incompréhension de la problématique. 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...