| Posted: 25 July 2003 at 5:05pm | IP Logged
|
|
|
I am very new with the type of filter. In installed it, then added the filter to the website in IIS console.
I take it that the below code to block inline images is supposed to redirect the request with a "referrer" to 404.asp.
[ISAPI_Rewrite]
# Defend your computer from some worm attacks RewriteRule .*(?:global.asa|default\.ida|root\.exe|\.\.).* . [F,I,O] # Block Inline Images RewriteCond Referer: .+ RewriteCond Referer: (?!http://(www\.)?archw\.com).* RewriteRule .*\.(gif|jpg|wmv|rm) /404.asp [I,L]
It doesn't work. I don't understand the second "RewriteCond" statment :
RewriteCond Referer: (?!http://(www\.)?archw\.com).*
Does this allow referrals from that particular website? I want to redirect inline image requests of all sites but *.archw.com.
Also, I can't figure out the file to do registration (enter my license code).
Thanks for your help!
|