IIS网站文件图片防盗链设置教程
首先IIS需要安装伪静态组件URL Rewrite,然后将代码保存为web.config,修改其中允许调用的域名,把它存放到网站根目录中,即可生效。
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="Prevent hotlinking"> <match url="^.*\.(jpg|png|mp4|rar|zip)$" ignoreCase="true" /> <conditions> <add input="{HTTP_REFERER}" pattern="http://允许外部调用的域名/.*" negate="true" /> <add input="{HTTP_REFERER}" pattern="http://绑定的域名/.*" negate="true" /> </conditions> <action type="Rewrite" url="/404.htm" /> </rule> </rules> </rewrite> </system.webServer> </configuration>
版权声明:
本站资源和文章内容大部分收集于网络,
本站所有资源的版权均属于原作者所有,
本站资源只用于参考学习,请勿直接商用,
若由于商用引起版权纠纷,一切责任均由使用者承担。
若有侵权之处请联系站长我们会第一时间删除
本文由XM技术学习分享发布,如需转载请注明出处。