IIS6.0防盗链终极配置

作者: 坎肩儿 分类: 安全配置 发布时间: 2010-04-22 13:41

[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600

RepeatLimit 32

# Protect httpd.ini and httpd.parse.errors files
# from accessing through HTTP
RewriteCond Host: (.+)
RewriteCond Referer: (?!http://\1.*).*
RewriteCond Referer: (?!http://(?:.*\.tahaoma\.com|.*\.haomachaoshi\.cn|.*\.baidu\.com|.*\.google\.cn)).+
RewriteRule .*\.(?:gif|jpg|png|exe|rar|zip) /block.gif [I,O]

其中:

RewriteCond Referer: (?!http://(?:.*\.tahaoma\.com|.*\.haomachaoshi\.cn|.*\.baidu\.com|.*\.google\.cn)).+

该行,设置要盗链的网址。

最后一行中的:

/block.gif

盗链不成功,显示的图片,路径要正确。