快捷搜索:  

IIS下Isapi_rewrite防盗链规则

在httpd.ini里面加入规则 httpd.ini原来可以复制多份放在网站的根目录里面,这样就等于有了虚拟主机功能,这样可以解决不少问题,具体遇到什么问题,实践中你会遇到(当然如果你有钱买isapi_rewrite的完整版,那么可以直接定义个总规则就行了)

完整的httpd.ini如下

针对下载地址IIS的虚拟主机的url规则
[ISAPI_Rewrite]

# 3600 = 1 hour
CacheClockRate 3600

RepeatLimit 32

#  Protect httpd.ini and httpd.parse.errors files
# from accessing through HTTP
RewriteRule ^/httpd(?:\.ini|\.parse\.errors).* [F,I,O]

RewriteCond Host: (.+)
RewriteCond Referer: (?!http://(?:domain\.com|www\.domain\.com)).+

#domain.com 是你允许连接资源的网站

RewriteRule .*\.(?:gif|png|bmp|wmv|mpg|flv|rm|rmvb|wma|mp3|rar|zip|swf|torrent) /index.html [I,O]

顶(0)
踩(0)

您可能还会对下面的文章感兴趣:

最新评论