View Single Post
  #11 (permalink)  
Old 11-24-2008, 12:02 PM
wige's Avatar
wige wige is offline
Moderator
WebProWorld Moderator
 
Join Date: Jun 2006
Location: United States
Posts: 2,661
wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9
Default Re: odd search results

If the proxy mimics a normal browser, you would need to block all IP addresses that they crawl from. You should be able to determine the range of IP addresses by visiting several sites that display the visitor's IP address, and putting those URLs into the proxy. You can block these IP addresses using the following line (added to the same place as the BrowserMatch directives above):
Code:
SetEnvIf Remote_Addr "^1\.2\.3\." bad_browser
This example will block every IP address starting with 1.2.3.x.
__________________
The best way to learn anything, is to question everything.
Reply With Quote