Reputation: 2029
A website of mine is accessible through different URL:
studienbuch.ch
studienbuch.at
studienbuch.com
I'd like to have them changed to www.studienbuch.tld, but keep the top level domain:
studienbuch.ch -> www.studienbuch.ch
studienbuch.at -> www.studienbuch.at
studienbuch.com -> www.studienbuch.com
How to handle that with .htaccess?
Upvotes: 0
Views: 385
Reputation: 143896
Try
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
Upvotes: 1
Reputation: 3962
The following should work (untested):
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.studienbuch\.(ch|at|com)
RewriteRule ^(.*)$ http://www.studienbuch.%1/$1 [R=301,L]
Upvotes: 1