show/hide this revision's text 2 added 18 characters in body

Have a look at the "last rule" and "no continue" flag.

http://httpd.apache.org/docs/1.3/mod/mod%5Frewrite.html

This is an example to block certain domains from hotlinking to your images.
You could apply it to your case (the NC flags is important) :

    RewriteCond %{HTTP_REFERER} !^http://(www\.)?leech_site\.com/ [NC]
    RewriteRule \.(gif|jpg|png)$ - [F,L]
show/hide this revision's text 1

Have a look at the "last rule" flag.

http://httpd.apache.org/docs/1.3/mod/mod%5Frewrite.html