I found where
in .htaccess blocks all access to that directory and prevents any images within that directory being displayed on my website. So I tried...
Code:
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain.com/.*$ [NC]
RewriteRule \.(gif|jpg)$ http://www.mydomain.com/angryman.gif [R,L]
This allows my website to display any images but they can still be accessed by the public.
Any ideas what I need to do to be able to use the images myself but not be access by anyone else?
Bookmarks