can i have an image directory protected from the httpd.conf instead with an .htaccess file when the .htaccess file in the domain.com/images/ directory looks like:
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^
http://(www\.)?domain\.com/ [NC
RewriteCond %{HTTP_REFERER} !^$
RewriteRule \.(jpe?g|gif|bmp|png)$
http://www.domain.com/ [L]
and what would that code be?
many thanx.