Dies ändert sich domain.com
zu www.domain.com
:
# Force the "www."
RewriteCond %{HTTP_HOST} !^www\.domain\.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
Wie ersetze ich den Teil "Domain", damit dies auf jeder Domain funktioniert ?
RewriteCond %{HTTP_HOST} ^yourdomain.com [NC]