hello every one any body know how adsnese look at range of ip plz? for example if will adsense look at these 2 ip addresses as they are same ip? 80.255.249.79 80.255.229.192 if yes then how can i deny the range of ip in my web site.. for example i want to deny range of ip for: 80.255.249.79 and range for: 80.255.229.192 so how can i deny range of ip for these 2 ip address plz? waiting your help
thanx but do u think adsense seeing 80.255.249 and 80.255.229 as same counrty or as same ip or same rane?
No I was quoting those IP ranges from a lookup tool Put this in your .htacces file: order allow,deny deny from 80.255. allow from all Code (markup): This will deny all visitors from IPs starting with 80.255 Or to ban only two of those IPs you can put this in your htaccess file: order allow,deny deny from 80.255.249.79 deny from 80.255.229.192 allow from all Code (markup):