SEO MotionZ Forum

Full Version: Redirecting offers to the right offers
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Here is a query of mine. I have been promoting some offers which converts in few selected countries such as US and Canada.

Now, here is what's happening. The link to the products are present in my forum signature section. So, people are clicking on them anyway. But as the products are just for US and Canada if a person from other nation clicks on them. They are redirected automatically to some random product. What should I do to put them in my desired product?
I guessing that the people comes to your landing page and then they goes to the product page, right?

Upload this code by creating a PHP redirect script in your root domain.

Code:
<?php
$a = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip='.$_SERVER['REMOTE_ADDR']));
$countrycode= $a['geoplugin_countryCode'];

if ($countrycode=='US')
    header( 'Location: https://www.youradnetwork.com/the-original-US-offer' ) ;
else if ($countrycode=='GB')
    header( 'Location: https://www.youradnetwork.com/the-UK-offer-of-your-choice' ) ;
else if ($countrycode=='CA')
    header( 'Location: https://www.youradnetwork.com/the-CA-offer-of-your-choice' ) ;
else
    header( 'Location: http://forums.seomotionz.com' ) ;
?>

I found this code while searching through the web and other forums.

In this code change the urls according to your needs. The US offer is for original page, UK-CA are to be redirected to the original one. And the last one which is showing the forum url, is for the rest of the world which will be redirected to it.
What should be the name of the .php extension file?
ninja21 Wrote:What should be the name of the .php extension file?

Its completely your choice.
supaul Wrote:I guessing that the people comes to your landing page and then they goes to the product page, right?

Upload this code by creating a PHP redirect script in your root domain.

Code:
<?php
$a = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip='.$_SERVER['REMOTE_ADDR']));
$countrycode= $a['geoplugin_countryCode'];

if ($countrycode=='US')
    header( 'Location: https://www.youradnetwork.com/the-original-US-offer' ) ;
else if ($countrycode=='GB')
    header( 'Location: https://www.youradnetwork.com/the-UK-offer-of-your-choice' ) ;
else if ($countrycode=='CA')
    header( 'Location: https://www.youradnetwork.com/the-CA-offer-of-your-choice' ) ;
else
    header( 'Location: http://forums.seomotionz.com' ) ;
?>

I found this code while searching through the web and other forums.

In this code change the urls according to your needs. The US offer is for original page, UK-CA are to be redirected to the original one. And the last one which is showing the forum url, is for the rest of the world which will be redirected to it.

The code is extremely helpful, thanks.