Having said that, you can prevent somebody form hotlinking (leeching) your images by implementing this to your .htaccess file
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?domain\.com/.*$ [NC]
RewriteRule .*\.(gif|jpg|png)$ http://www.domain.com/eatme.jpe [R,NC,L]
</ifModule>
SamStatistics: Posted by drbyte — May 4th, 2011, 12:00 pm
]]>