But I'm stuck with someone who bought these : .co, .com and .co.uk
They want the .co.uk to be primary.
I've sorted the .com like this:
RewriteCond %{HTTP_HOST} ^(www\.)?thedomain\.com
RewriteRule (.*) http://www.thedomain.co.uk/$1 [R=301,L]Which works fine. However, when I do
RewriteCond %{HTTP_HOST} ^(www\.)?thedomain\.co
RewriteRule (.*) http://www.thedomain.co.uk/$1 [R=301,L]I get an infinite loop error, obviously caused by the .co.uk being included in the RewriteCond rule and then redirecting again....
Any ideas how I can resolve this?












