Geo Redirect Links

abc

Affiliate Guard Dog Member
Joined
May 20, 2015
Messages
231
Reaction score
94
Anyone have a suggestion for a wordpress plugin that will let me redirect links, country and city, EX usa - new york goes to link1 but usa Las vegas goes to link 2
 

baldidiot

Affiliate Guard Dog Member
Joined
Feb 23, 2011
Messages
708
Reaction score
215
Although in the cloudfare example I've missed out the country_code parameter because I'm a numpty.

Should be:

Code:
<?php

$country_code = $_SERVER["HTTP_CF_IPCOUNTRY"];

if($country_code=="US"){
header("Location: http://www.usacasino.com/");
}
else
{
header("Location: http://www.nonusacasino.com/");
}


?>
 

RyanWeb

Affiliate Guard Dog Member
Joined
Apr 9, 2015
Messages
973
Reaction score
412
While geotargeting is an easy to use plugin, and the best one I have found to work with wp - I would go with the @baldidiot option if you can. The plugin is somewhat large, and often had issues when updating automatically. I would have to manually update the plugin: drop in files via ftp.

If you can do something without a plugin, its almost always a better option.
 

Jono78

New Member
Joined
May 8, 2014
Messages
16
Reaction score
6
Flytonic do a geo target plugin.

Sent from my SM-G935F using Tapatalk
 
Top