Forum Moderators: Robert Charlton & goodroi
However my stats reveal that referals from Google image search is almost ten times higher than regular search referals. Is there any reason for this and anything that can be done to tip the balance in the other direction?
"Small minority"?
It seems like the vast majority of sites I visit are selling something, even this one sells ads.
I actually can't remember the last site I visited that has "absolutely no commercial value". Usually there are Ads, sponsors, affiliates, link exchanges or something of some value.
Therefore I conclude that almost everyone is in the business of converting traffic to some kind of reward, not always ecommerce, but, never-the-less, some type of financial reward.
Another person who has problems with Pakistanis linking to his products from his regular sites replaces the images with cartoons.
Dude jerking it with a dildo attached to a reciprocating saw shoved up his ass....
Ah, you've gotta love some of the responses when they realise.
Anyway, for blocking using .htaccess I use this in my file:
RewriteCond %{HTTP_REFERER} .
RewriteCond %{HTTP_REFERER}!^http://([^.]+\.)?yoursite\. [NC]
RewriteCond %{HTTP_REFERER}!^http://([^.]+\.)?site1\. [NC]
RewriteCond %{HTTP_REFERER}!^http://([^.]+\.)?site2\. [NC]
RewriteCond %{HTTP_REFERER}!^http://([^.]+\.)?site3\. [NC]
RewriteCond %{REQUEST_URI}!^/hotlink\.jpg$
RewriteRule \.(gif¦jpg¦png)$ /hotlink.jpg [NC,L]
That should redirect all hotlinkers to whatever (prefereably very small sized) image you want. I DO however also use these lines:
RewriteCond %{HTTP_REFERER}!google\. [NC]
RewriteCond %{HTTP_REFERER}!search\?q=cache [NC]
Which allow google to hotlink my images, and hence show up in image searches.
[edited by: RockyB at 2:56 pm (utc) on Mar. 4, 2006]
Btw, you need to change the ¦ character to a full bar if you want to use that code, webmasterworld puts a break in it for some reason.