How to Avoid Hot Linking
Posted by : Dexter Panganiban |You are invited to have my FREE RSS Feeds or you may Subscribe to me via emailfor latest information in this website.
“hot linking” is a problem that a site owner is facing specially if the hot link images is high views from those who copied the pics. it is also “bandwidth stealing” by others .
You may disallow hot linking by using .htaccess, It might redirect the pictures to otehr pictures in the net or just a simple broken image links.
Here are the direction on how to make it via Htaccess. You have to copy the following txt to your .htaccess. but be sure to change mydomain.com with your own
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www.)?mydomain.com/.*$ [NC]
RewriteRule .(gif|jpg|js|css)$ – [F]
The above code creates a failed request when hot linking of the specified file types occurs. In the case of images, a broken image is shown instead.
Serving alternate content when hot linking is detected
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www.)?mydomain.com/.*$ [NC]
RewriteRule .(gif|jpg)$ http://www.mydomain.com/whatever.gif [R,L]
But be sure to upload http://www.mydomain.com/whatever.gif to your server.

Interesting Comments
Leave a Reply
Check my Blogging Tips and Experience
- Happy New Year To All
- Visitors : How do I Classify You ?
- iPod in for my blog ( Online MP3 )
- Tech At Hand Dot Net in Year 2008
- DreamHost Promo Code { $50 Discount }
My WordPress Tips and Tricks
- Want Free WordPress Theme ?
- WordPress Tips : Is it good to Use Excerpt
- We Are Now Using WordPress version 2.9 “Carmen”
- How to Avoid Hot Linking
- How To Change Wordpress Permalink




























