修改网站的web.config或用记事本制作一个web.config,记住将*txt格式改为.config 代码如下:
<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name=”BlockDirectDownload” enabled=”true” stopProcessing=”true”>
<match url=”(?:jpg|png|gif)$” ignoreCase=”true” />
<conditions>
<add input=”{HTTP_REFERER}” pattern=”^http://(.*\.)?(jiuyingge\.com)/.*$” negate=”true” />
</conditions>
<action type=”CustomResponse” statusCode=”404″ />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
以上设置了http://www.jiuyingge.com网站的图片防盗链文件。
将web.config文件上传至网站根目录(wwwroot)下即可 如果网站有设置伪静态,直接将上述代码加入原有web.config一样可以生效