Windows 2008R2 IIS7.5配置防盗链方法
作者:admin发布时间:2021-11-03分类:软件教程浏览:评论:0
导读:Windows2008R2IIS7.5配置防盗链方法1、下载微软自己提供的IISREWRITE模块:http://www.microsoft.com/downloads/zh-cn/details.aspx?familyid=1b8c7bd8-8824-4408-b8fc-49dc7f951a002、修改网站的web.config引用 <system.webServer>
Windows 2008R2 IIS7.5配置防盗链方法
1.免费下载微软公司自身给予的IIS REWRITE控制模块:/zb_users/upload/2021/11/03/ style="color: rgb(68, 68, 68); font-family: Tahoma, Arial; font-size: 14px; line-height: 25.2px;"> 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>
设定了只容许http://www.ucbugxz.com.http://soft.ucbugxz.com/ 启用网址的rar.zip种类的文档。
1.免费下载微软公司自身给予的IIS REWRITE控制模块:/zb_users/upload/2021/11/03/ style="color: rgb(68, 68, 68); font-family: Tahoma, Arial; font-size: 14px; line-height: 25.2px;"> 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>
设定了只容许http://www.ucbugxz.com.http://soft.ucbugxz.com/ 启用网址的rar.zip种类的文档。
相关推荐
- Windows2008R2 IIS7.5伪静态URL中带特殊符号无法访问怎么解决?
- Windows 2008R2系统修改远程桌面端口的方法介绍
- Windows 2008R2 FTP服务器文件重命名无法替换怎么解决?
- Wndows2008R2一键安装PHP环境图文教程(PHP7.0+FastCGI模式)
- Windows2008R2一键安装PHP环境图文教程(PHP5.6+FastCGI模式)
- Windows2008R2一键安装PHP环境图文教程(PHP5.2+FastCGI模式)
- Windows2008R2系统如何设置FTP功能并开设网站?
- Windows2008R2系统如何开启ASP和FTP功能模块?
你 发表评论:
欢迎- 软件教程排行
- 最近发表