Lionel
Lionel

Reputation: 2029

Htaccess - Redirect domain.com to www.domain.com, BUT for different top level domains

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

Answers (2)

Jon Lin
Jon Lin

Reputation: 143896

Try

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.  [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1  [R=301,L]

Upvotes: 1

Ben
Ben

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

Related Questions