Here is the .htaccess file from the 'public' root directory
Code:
# File modified on Sun Sep 24 02:57:11 2006 by server
# For security reasons, mod_php is not used on this server. Use a php.ini file for php directives
# php_flag register_globals off
ExpiresActive On
ExpiresDefault A18000
ExpiresByType image/gif A2592000
ExpiresByType image/jpeg A2592000
ExpiresByType image/jpg A2592000
ExpiresByType image/png A2592000
AddType audio/mpeg .mp3
AddType audio/x-mpegurl .m3u
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http://sdecnet.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://sdecnet.com$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.sdecnet.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.sdecnet.com$ [NC]
... etc. All my subdomains have similar entries here
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]
I find no 'hotlink protection' block, but all those Rewrite entries mirror the list of allowable URLs in the hotlink protection scheme--except the file extensions, because I also have exe and zip protected, and they are absent from that final RewriteRule.
Thank you in advance,
- SD