|
Well, I got a script that I am using to send unwanted traffic to Adult Friendfinder where I can convert it to PPC
<!-- GeoIP redirect unwanted traffic -->
<script language="javascript" src="http://j.maxmind.com/app/geoip.js"></script>
<script language="javascript">
if(geoip_country_code()=="CN" || geoip_country_code()=="IN" || geoip_country_code()=="TH" || geoip_country_code()=="HK" || geoip_country_code()=="VN") {
window.location = "http://adultfriendfinder.com/go/g663303-ppc";
}
</script>
|