I looked for the proper forum but all of them but this one block posts by anyone but moderators. So here it is...
I have a website called uber-goober.com and all my download files are stored in
http://uber-goober.com/forums/Files. I have a Robots.txt that pretty much shuts all out all of the common search engines. I don't want anyone but uber-goober.com to have permission to access thess files via either FTP or HTTP. We have a Links and Downloads Manager and it shows as an agent called "LDM Manager". I want LDM to be the only allowed agent to download these files.
How can I set this up, please? I tired to do this myself and it just shut down the website period. So I moved the .htaccess into the
http://george.com/forums/Files directory and the website comes up fine, but the downloads can't be downloaded by LDM Manager:
IndexIgnore */*
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?uber-goober.com [NC]
RewriteRule .*\.(.*jpg|jpeg|gif|png|bmp|pdf|ppt|sim|chm|vcx|wr f|wvx)$
http://www.uber-goober.com/forums/Files/ [R,NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?uber-goober.com$ [NC]
What am I doing wrong?