I have been searching for a way to block with .htaccess other domains from downloading images and as far as now this is the answer I like the most, with some modifications:
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain\.com [NC]
#RewriteCond %{HTTP_REFERER} !^http://(www\.)?otherdomain\.com [NC]
RewriteRule \.(gif|jpe?g|js|css)$ - [F,NC,L]
Good one and works, but only for certain images.
Is there any way to block access to all images?
Thanks in advance.
UPDATED: All my image files are in mydomain.com/Images