Rediriger http://MonDomaine.com vers http://www.MonDomaine.com

WRInaute passionné
Bonjour,

Code:
RewriteCond %{HTTP_HOST} !^www.example.comr$
RewriteRule ^(.*)   http://www.example.com/$1  [QSA,L,R=301]
 
WRInaute impliqué
Salut, pour ma part j'utilise un script php, ça fonctionne plutôt pas mal. ( n'oublie pas de le mettre avant tout affichage ).


<?php
if (substr($_SERVER["SCRIPT_URI"],0,11) != 'http://www.') {
header('HTTP/1.1 301 Moved Permanently');
header('Location: http://www.TONSITEWEB.fr'. $_SERVER["SCRIPT_URL"]); # Remplacer Tayo.fr par son site bien sur.
}
?>
 
Discussions similaires
Haut