I enabled hotlinking protection via my control panel which resulted in the following code added to my .htaccess file RewriteEngine on RewriteCond %{HTTP_REFERER} !^http://domain.biz/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://domain.biz$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.domain.biz/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.domain.biz$ [NC] RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC] Now I attempted to set up a subdomain and all my images in subdomain web do not show. Are there some lines I can add to .htaccess to keep hotlinking code for main domain in place and at same time allowing images to show in subdomain? Thanks, Shannon