Forum Moderators: phranque
Deny from (IP)?
I have hotlink protection
how are they hotlinking?
or how are you protecting such that they can bypass the protection?
there are a ton of image hotlinking [google.com] threads on WebmasterWorld.
I sticky the protection code but on't want to post ideas about how bypassing the protection
What I do it serve a "hotlink" image so that when they request /myimagebeinghotlinked.jpg they get served /anit_hotlinking_image.jpg
Then I make the anit_hotlinking_image.jpg a picture of my website with the url across it.
Or "Image Available at sitename.com"
Usually if you promote your site in the image it isn't long before they take it down.
Then I make the anit_hotlinking_image.jpg a picture of my website with the url across it.
Or "Image Available at sitename.com"
I like this method, but question: when I do this, the anti-link image I serve up on the other website stays in the visitor's cache, and thus when they come to my site they still see the anti-link image and not the real image (until they hit reload). Any suggestions?
they still see the anti-link image and not the real image (until they hit reload). Any suggestions?
How would they see the same image? Arriving via browser to your site should cause the browser to read everything "new"! Unless I'm missing something, you'll be serving the real image to your site visitors, not the anti-hotlink image...
RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://(www\.)?ebay\.com/ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://(www\.)?cgi.ebay\.com/ [NC]
RewriteRule \.(jpe?g¦gif¦png)$ images/nohotlink.gif [L]
edit: let me test that, Demaestro.
[edited by: MWpro at 3:34 pm (utc) on June 29, 2009]
For me bandwidth is a non issue, images on sites with high traffic volume are hosted from a remote server so that image calls don't affect the sites' speed.
If Ebay is hot-linking images from your site don't you think having your site URL and a message in those images encouraging people to buy from you or visit you is worth it? I do.
images on sites with high traffic volume are hosted from a remote server so that image calls don't affect the sites' speed.
I guess you are not talking about free hosting images right? Do they pay another hosting service just to place images there and leave the main hosting account with just html files?
Do they pay another hosting service just to place images there and leave the main hosting account with just html files?
No, it's something my sys guy set up so that shared servers are snappy. He sits around all day and thinks this stuff up, it makes him happy.
edit... that rhymes by accident.
[edited by: Demaestro at 2:41 pm (utc) on July 2, 2009]