ronanlionti Posted February 28, 2022 Share Posted February 28, 2022 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 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 More sharing options...
Mediacom87 Posted February 28, 2022 Share Posted February 28, 2022 Bonjour, PrestaShop gère de base la redirection HTTP vers HTTPS si vous avez activer le SSL dans PrestaShop. Link to comment Share on other sites More sharing options...
ronanlionti Posted February 28, 2022 Author Share Posted February 28, 2022 6 minutes ago, Mediacom87 said: Bonjour, PrestaShop gère de base la redirection HTTP vers HTTPS si vous avez activer le SSL dans PrestaShop. Bonjour @Mediacom87, merci pour votre réponse. Ce dernier est bien activé cependant les redirections ne se font pas. Link to comment Share on other sites More sharing options...
Mediacom87 Posted February 28, 2022 Share Posted February 28, 2022 Votre fichier .htaccess existe bien ? une url pour tester ? Link to comment Share on other sites More sharing options...
Avengers Posted February 28, 2022 Share Posted February 28, 2022 (edited) 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 February 28, 2022 by Avengers (see edit history) Link to comment Share on other sites More sharing options...
ronanlionti Posted February 28, 2022 Author Share Posted February 28, 2022 48 minutes ago, Mediacom87 said: Votre fichier .htaccess existe bien ? une url pour tester ? Oui ce dernier existe bien Voici les liens www.mespetitsplats-lyon.fr https://mespetitsplats-lyon.fr/ Link to comment Share on other sites More sharing options...
ronanlionti Posted February 28, 2022 Author Share Posted February 28, 2022 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 More sharing options...
Mediacom87 Posted February 28, 2022 Share Posted February 28, 2022 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 More sharing options...
ronanlionti Posted February 28, 2022 Author Share Posted February 28, 2022 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 More sharing options...
Mediacom87 Posted February 28, 2022 Share Posted February 28, 2022 il y a 23 minutes, ronanlionti a dit : D'accord, merci pour votre aide. Veuillez m'excuser pour mon incompréhension de la problématique. pas de soucis on est tous là pour apprendre. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now