I would like to redirect visitors to different sites depending on their country. I just can't get this to work. Any help would be very much appreciated. Here is what I've got:
Code:
<?php
require_once('geoip.inc');
$gi = geoip_open('GeoIP.dat', GEOIP_MEMORY_CACHE);
$country = geoip_country_code_by_addr($gi, $_SERVER['REMOTE_ADDR']);
geoip_close($gi);
if ($country == 'ca') {
header('Location: example.ca');
}
if ($country == 'nz') {
header('Location: example.co.nz');
}
if ($country == 'uk') {
header('Location: example.co.uk');
}
if ($country == 'us') {
header('Location: example.info');
}
?>



