A 开发者_如何学Cwebsite 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?
The following should work (untested):
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.studienbuch\.(ch|at|com)
RewriteRule ^(.*)$ http://www.studienbuch.%1/$1 [R=301,L]
Try
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
精彩评论