Windows 2008R2 IIS7.5配置防盗链方法
时间:2024-02-29 14:12:26
来源: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.ucbug.cc、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.ucbug.cc/.*" 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.ucbug.cc/.*" 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.ucbug.cc、http://soft.ucbugxz.com/ 调用网站的rar、zip类型的文件。
相关文章
- Windows2008R2 IIS7.5伪静态URL中带特殊符号无法访问怎么解决?
- Windows 2008R2系统修改远程桌面端口的方法介绍
- 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激活工具 是专门针对Windows Server 2008 R2系统而开发的一套免费激活软件,该软件完全免费,并且小编亲测无木马无病毒,可以轻松完美激活windows server 2008 r2系统,让用户无限制免费使用。使用教程用户可以参考下文操作,希望对广大网友有
查看详情
推荐文章
文章排行