I find a ton of "blocked urls" in adsense report saying they are blocked by robots.txt which actually has Google media partners allowing....
They are mostly kinda
http:/ / www. google. cl/ imgres? imgurl= http:/ /example.com/bla
I also have bing [
bing.com...]
I manually checked on those image searchers and I see my images.
What I do have is a .htaccess antihotlinking code like this
and to me is working ok..
#anti-hotlinking
RewriteEngine on
RewriteCond %{HTTP_REFERER} .
RewriteCond %{HTTP_REFERER} !^http://(www\.)?example\.com/? [NC]
RewriteCond %{HTTP_REFERER} !(google|msn|yahoo|bing|picsearch|altavista|ditto|ask|live|aol|terra|alltheweb|lycos|pixsy|mamma|metacrawler|ixquick|grippo)\. [NC]
RewriteCond %{HTTP_REFERER} !search\?q=cache [NC]
RewriteRule .*\.(gif|jpg|jpeg|bmp|png)$ http://exmple.jpg [R,L]
Are those "blocked urls" reported correct?....
Am I missing something?