Probleme avec htaccess
Résolu/Fermé
renard007
Messages postés
5
Date d'inscription
vendredi 26 septembre 2003
Statut
Membre
Dernière intervention
8 février 2014
-
6 févr. 2014 à 20:27
animostab Messages postés 2829 Date d'inscription jeudi 10 mars 2005 Statut Membre Dernière intervention 11 novembre 2019 - 8 févr. 2014 à 12:49
animostab Messages postés 2829 Date d'inscription jeudi 10 mars 2005 Statut Membre Dernière intervention 11 novembre 2019 - 8 févr. 2014 à 12:49
A voir également:
- Probleme avec htaccess
- Problème avec .htaccess - Forum Webmastering
- Problème htaccess - Forum Webmastering
- Htaccess ovh ✓ - Forum Référencement
- Restriction avec .htaccess ✓ - Forum Référencement
- .Htaccess - Forum Référencement
2 réponses
animostab
Messages postés
2829
Date d'inscription
jeudi 10 mars 2005
Statut
Membre
Dernière intervention
11 novembre 2019
737
7 févr. 2014 à 02:30
7 févr. 2014 à 02:30
Salut essaie ca
RewriteEngine On
RewriteCond %{HTTP_HOST} ^tonsite.com$
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTP_HOST} ^tonsite.com$
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteEngine On
RewriteCond %{HTTP_HOST} ^tonsite.com$
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTP_HOST} ^tonsite.com$
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
renard007
Messages postés
5
Date d'inscription
vendredi 26 septembre 2003
Statut
Membre
Dernière intervention
8 février 2014
8 févr. 2014 à 12:37
8 févr. 2014 à 12:37
Slt merci pour ta réponse elle m'a bien aidée mais la résolution n'était que partielle :
- en effet le certificat ne s'appliquant que sur le www ça renvoyait dans le cas de (rien du tout).mondomaine.com vers https:\mondomaine.com => certificat non valide....
- le http://www. ne renvoyait pas vers https://www.
Voici grâce à ta réponse la solution à mon problème :
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mondomaine.com$
RewriteCond %{HTTP_HOST} ^www\.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTP_HOST} ^mondomaine.com$
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
--
- en effet le certificat ne s'appliquant que sur le www ça renvoyait dans le cas de (rien du tout).mondomaine.com vers https:\mondomaine.com => certificat non valide....
- le http://www. ne renvoyait pas vers https://www.
Voici grâce à ta réponse la solution à mon problème :
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mondomaine.com$
RewriteCond %{HTTP_HOST} ^www\.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTP_HOST} ^mondomaine.com$
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
--
animostab
Messages postés
2829
Date d'inscription
jeudi 10 mars 2005
Statut
Membre
Dernière intervention
11 novembre 2019
737
8 févr. 2014 à 12:49
8 févr. 2014 à 12:49
OK @+ bien content que tu ai trouvé la solution
8 févr. 2014 à 12:38