做网站的朋友一般都会遇到这样的一种情况,就是别人的网站经常会调用我们自己网站的图片或者文件,这无形之中会增加我们的服务器的压力,尤其是对于一些服务器带宽并不是十分富裕的网站来说就更是雪上加霜。因此我们需要学会设置防盗链来应对或者说来杜绝这样的情况发生。今天361源码就从IIS和Apache环境来分别教大家如何设置防盗链。
一、apache和iis6实现防盗链规则相同,在isapi筛选器开启自定义url静态化支持(一般的虚拟主机商都会提供),然后进入httpd.conf中,复制以下代码加进去:
RewriteEngine onRewriteCond %{HTTP_REFERER} !baidu.com [NC]RewriteCond %{HTTP_REFERER} !google.com [NC]RewriteCond %{HTTP_REFERER} !xxx.com [NC]RewriteRule .*/.(gif|jpg)$ /band.txt [NC,L]
简单介绍一下:
Tips:xxx.com是您自己的域名,band.txt是被盗链后的提示内容文件。
二、iis7实现防盗链则需要修改web.config文件,复制以下代码保存即可:
<?xml version="1.0" ?><configuration> <system.webServer> <rewrite> <rules> <rule name="Prevent hotlinking"> <match url="^.*/.(rar|zip|jpg|gif)$" ignoreCase="true" /> <conditions> <add input="{HTTP_REFERER}" pattern="http://www.xxxxxx.com/.*" negate="true" /> <add input="{HTTP_REFERER}" pattern="http://xxxxxx.com/.*" negate="true" /> </conditions> <action type="Rewrite" url="404.html" /> </rule> </rules> </rewrite> </system.webServer></configuration>
OK,完成!
新闻热点
疑难解答
图片精选