Jump to content

Redirect tld domain for .co


richrock

Recommended Posts

Right, I'm fairly comfortable with redirecting other tld's, typically we'll redirect a .com to .co.uk - easy stuff.

 

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?

Link to comment
https://forums.phpfreaks.com/topic/273726-redirect-tld-domain-for-co/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.