Forum Moderators: open
RewriteCond %(HTTP_REFERER) "!^http:\/\/(www.)?google(\.co[m]?)?(\.[a-z]{2})?\/.*q=cache:" - which would catch the cache using Google domain-names, but it would not catch the IPs like this one:
[216.239.37.104...]
It seems like this string is constant, so you could match it in stead:
/search?q=cache: - so this (much simpler) rule should be enough to do the trick:
RewriteCond %(HTTP_REFERER) "!\/search\?q=cache:" /claus
[webmasterworld.com...]
Note that the method used in the cited thread does not use mod_rewrite. Those who wish to use mod_rewrite will need to do a little reformatting, but the list is a good one.
Jim