View Single Post
Old 2004-08-05, 07:53 PM   #44
venturi
No offence Apu, but when they were handing out religions you must have been out taking a whizz
 
Join Date: Apr 2003
Location: An Oasis atop a High Desert Mesa
Posts: 282
Send a message via ICQ to venturi
Quote:
Originally posted by Ramster
RewriteCond %{HTTP_REFERER} !^http://.*baberankings.com/.*$ [NC]
Hey Ramster,
The reason, as far as I can tell, that the wanker was getting around your htaccess is because of the * infront of your domain name. Basically the way your RewriteCond is being interpreted is that ANY referer that begins with "http://" and contains "baberankings.com" is accepted.
It should be like this:
Code:
RewriteCond %{HTTP_REFERER} !^http://www.baberankings.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://baberankings.com/.*$ [NC]
p.s. - that was a pretty shitty response you got from Candid.
venturi is offline   Reply With Quote