I have enabled hotlinking protection on my server but i am getting this error when i load the redirection page directly with firefox.
IE will not display this error but timeout instead.
It's strange that it worked when I enabled it. Now, it's showing this message after I enabled it for a week. I don't think it's quota problem.
Here is what's in my .htaccess :
Please help...thanks in advance.
Code:
Redirection limit for this URL exceeded. Unable to load the requested page. This may be caused by cookies that are blocked.
It's strange that it worked when I enabled it. Now, it's showing this message after I enabled it for a week. I don't think it's quota problem.
Here is what's in my .htaccess :
Code:
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http://domain.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://domain.com$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain.com$ [NC]
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ http://www.domain.com/no_hotlink.jpg [R,NC]
Last edited: