Forum Moderators: phranque
Is there any way that I can set up a site so that its impossible for someone to remote link an image off of it?
One of quite a few ways... see
[webmasterworld.com...]
My own preference is mod_rewrite
Using mod_rewrite and .htaccess (Apache needed)rewriteCond %{HTTP_REFERER} !^$
rewriteCond %{HTTP_REFERER} !^http://yourserver/.*$ [NC]
rewriteRule .*\.gif$ - [F]extend for jpg's etc.
To put in a new image have an image in another directory and use something like:
rewriteRule .*\.gif$ /denied/noinline.gif
from :- [engelschall.com...]