How to redirect the traffic to the right people while promoting CPA offers?

Inconite

Junior Member
Joined
May 16, 2017
Messages
166
Reaction score
58
Hi,

I am newbie to CPA offers.
Suppose I am promoting an offer from Adworkmedia
lets say the offer is about "get paid to take surveys" and it only converts to US people.

Now I have that link in my IG bio but when some other country people click that link they are getting redirected to a random offer.
So my question is how can I redirect other country people to other offer of my choice?
 
Now I have that link in my IG bio but when some other country people click that link they are getting redirected to a random offer.
So my question is how can I redirect other country people to other offer of my choice?
In order to do so you need to buy a cheap domain + hosting and create/upload the following PHP redirect script:
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.adworkmedia.com/the-original-US-offer' ) ;
else if ($countrycode=='GB')
    header( 'Location: https://www.adworkmedia.com/the-UK-offer-of-your-choice' ) ;
else if ($countrycode=='CA')
    header( 'Location: https://www.adworkmedia.com/the-CA-offer-of-your-choice' ) ;
else
    header( 'Location: http://blackhatworld.com' ) ;
?>

The URLs in this script are just examples.
Change them with links to your own offers or nothing good will happen ;)

Copy the above code into a text file and name it anythingyouwant.php
Upload this file to your domain/hosting, short the URL with goo.gl or something and put that link in your IG bio.

Now how does this script work?

People from the USA (US) will be redirected to your original offer.
People from the UK (GB) will be redirected to an offer of your choice.
People from Canada (CA) will be redirected to an offer of your choice.
People from any other country will be redirected to blackhatworld.com (or whatever you put in there)

If you wish to add more countries/offers just create extra "else if" lines like in the example code.
The correct country codes can be found here:
Code:
http://www.geoplugin.com/iso3166

Good luck :)
 
Hi, Can you tell me where Can I add these codes?, I really like the final line ;)
In order to do so you need to buy a cheap domain + hosting and create/upload the following PHP redirect script:
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.adworkmedia.com/the-original-US-offer' ) ;
else if ($countrycode=='GB')
    header( 'Location: https://www.adworkmedia.com/the-UK-offer-of-your-choice' ) ;
else if ($countrycode=='CA')
    header( 'Location: https://www.adworkmedia.com/the-CA-offer-of-your-choice' ) ;
else
    header( 'Location: http://blackhatworld.com' ) ;
?>

The URLs in this script are just examples.
Change them with links to your own offers or nothing good will happen ;)

Copy the above code into a text file and name it anythingyouwant.php
Upload this file to your domain/hosting, short the URL with goo.gl or something and put that link in your IG bio.

Now how does this script work?

People from the USA (US) will be redirected to your original offer.
People from the UK (GB) will be redirected to an offer of your choice.
People from Canada (CA) will be redirected to an offer of your choice.
People from any other country will be redirected to blackhatworld.com (or whatever you put in there)

If you wish to add more countries/offers just create extra "else if" lines like in the example code.
The correct country codes can be found here:
Code:
http://www.geoplugin.com/iso3166

Good luck :)
 
Copied the codes posted and kept them in my Evernote.

I always thought this is impossible to do so I've just let the smartlinks decide my customers' fate. Luckily, this has been posted. Thanks OP!
 
Back
Top