I have a website with two landing pages (www.abc.com):
Conditions of landing page 2:
Note: Referral traffic means the traffic which we purchased from adnetworks.
How can we stop robots and how we can redirect the referral traffic from a selected country and how will we detect the country?
In your PHP script, you can always check the $_SERVER['HTTP_REFERER'] value and redirect to the appropriate page using:
header('Location: '.$pageYouWanToRedirectTo);
exit();