首先,要下载、安装一个IIS 重写模块。是到微软站点下载的,可以放心了。(靠,之前以为IIS7是内置了的,想不到还是要另外安装东西)
http://www.microsoft.com/downloads/zh-cn/details.aspx?familyid=1b8c7bd8-8824-4408-b8fc-49dc7f951a00
安装完以后,修改网站的web.config,加入
[html] view plaincopy
- <system.webServer>
- <rewrite>
- <rules>
- <rule name=”Prevent hotlinking”>
- <match url=”^.*\.(rar|zip)$” ignoreCase=”true” />
- <conditions>
- <add input=”{HTTP_REFERER}” pattern=”http://www.laojinan.net/.*” negate=”true” />
- <add input=”{HTTP_REFERER}” pattern=”http://news.laojinan.net/.*” negate=”true” />
- <add input=”{HTTP_REFERER}” pattern=”http://www.phpunion.net/.*” negate=”true” />
- </conditions>
- <action type=”Rewrite” url=”/404.htm” />
- </rule>
- </rules>
- </rewrite>
- </system.webServer>
文件中设置了只允许http://www.laojinan.net、http://news.laojinan.net、http://www.phpunion.net调用网站的rar、zip类型的文件。
转载请注明:苏demo的别样人生 » IIS7.5配置防盗链