Multi site : with www or without www for all domains in only 2 lines
To redirect a domain without www to a domain with www :
RewriteCond %{HTTP_HOST} ^your-domain.com$
RewriteRule ^(.*) http://www.your-domain.com/$1 [QSA,L,R=301]
and to redirect all domains without www to domains with www :
RewriteCond %{HTTP_HOST} !^www(.*)$ [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [QSA,R=301,L]
You put this two lines in your .htaccess in custum redirection section. that's all
In your multi-site configuration, you put only the url with www
G.Bob
Multi site : redirection de tous les domaines en 2 lignes
Pour rediriger un domaine sans www vers un domaine avec www :
RewriteCond %{HTTP_HOST} ^votre-domaine.com$
RewriteRule ^(.*) http://www.votre-domaine.com/ [QSA,L,R=301]
et pour rediriger tous les domaines sans www vers les domaines avec www :
RewriteCond %{HTTP_HOST} !^www(.*)$ [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/ [QSA,R=301,L]
Vous mettez c'est deux lignes dans votre .htaccess dans la section "custom redirects" et c'est tout
Dans votre configuration multi site, vous ne mettez que l'url avec www
G.Bob