Forum Moderators: phranque
Would this cut the mustard for the visitor given in my log extract above?
RewriteCond %{HTTP_REFERER} ^http://sitereview.bluecoat.com$
RewriteRule !^http://[^/.]\.mysite.org.uk.* - [F]
RewriteRule .*$ - [F]
Simple and clean
RewriteRule \.html$ - [F] RewriteRule .*$ - [F]
Simple and clean
Except that Apache now has to check the Conditions for every single request it ever receives. I think bluecoat only looks at pages, so you can constrain the Rule itself to
I guess that means I can keep merrily adding Deny from IP lines
Was that a reference to the superfluous $ in the Rule? At least that anchor-- unlike some-- won't do any harm