Windows 2008R2 IIS7.5配置防盗链方法
时间:2016-03-19 10:59:55
来源:ucbug下载站
作者:ucbug下载站
Windows 2008R2 IIS7.5配置防盗链方法
1、下载微软自己提供的IIS REWRITE模块:http://www.microsoft.com/downloads/zh-cn/details.aspx?familyid=1b8c7bd8-8824-4408-b8fc-49dc7f951a00
2、修改网站的web.config
设置了只允许http://www.ucbugxz.com、http://soft.ucbugxz.com/ 调用网站的rar、zip类型的文件。
1、下载微软自己提供的IIS REWRITE模块:http://www.microsoft.com/downloads/zh-cn/details.aspx?familyid=1b8c7bd8-8824-4408-b8fc-49dc7f951a00
2、修改网站的web.config
引用
<system.webServer>
<rewrite>
<rules>
<rule name="Prevent hotlinking">
<match url="^.*.(rar|zip)$" ignoreCase="true" />
<conditions>
<add input="{HTTP_REFERER}" pattern="http://www.ucbugxz.com/.*" negate="true" />
<add input="{HTTP_REFERER}" pattern="http://soft.ucbugxz.com/.*" negate="true" />
</conditions>
<action type="Rewrite" url="/no.html" />
</rule>
</rules>
</rewrite>
</system.webServer>
<rewrite>
<rules>
<rule name="Prevent hotlinking">
<match url="^.*.(rar|zip)$" ignoreCase="true" />
<conditions>
<add input="{HTTP_REFERER}" pattern="http://www.ucbugxz.com/.*" negate="true" />
<add input="{HTTP_REFERER}" pattern="http://soft.ucbugxz.com/.*" negate="true" />
</conditions>
<action type="Rewrite" url="/no.html" />
</rule>
</rules>
</rewrite>
</system.webServer>
设置了只允许http://www.ucbugxz.com、http://soft.ucbugxz.com/ 调用网站的rar、zip类型的文件。
相关文章
- Win2008R2系统架设VPN新建用户怎么指定IP地址
- Windows2008R2系统如何开启ASP和FTP功能模块?
- Windows2008R2系统如何设置FTP功能并开设网站?
- Windows2008R2一键安装PHP环境图文教程(PHP5.2+FastCGI模式)
- Windows2008R2一键安装PHP环境图文教程(PHP5.6+FastCGI模式)
- Wndows2008R2一键安装PHP环境图文教程(PHP7.0+FastCGI模式)
- Windows 2008R2 FTP服务器文件重命名无法替换怎么解决?
- Windows2008R2 IIS7.5伪静态URL中带特殊符号无法访问怎么解决?
- Windows 2008R2系统修改远程桌面端口的方法介绍
简介:windows server 2008 r2 (简称 windows2008r2 )是微软官方推出的第一个只提供64位版本的服务器操作系统,它提供了全新的虚拟化技术,为您的业务提供更多的高级功能,在改善IT效率的同时提高了灵活性。无论是您希望整合服务器,构建私有云,或提供虚拟桌面基
立即下载
推荐文章
文章排行