您现在的位置是:网站首页 >> 常见问题
常见问题

联 系 人:李总
联系电话:13759574266
在线 QQ:89417157
邮箱:13759574266@qq.com
微信号:ynlongtou
地址:昆明市滇缅大道旁昆建路5号108智库空间A座4楼

常见问题

asp网站启用防盗链

asp网站启用防盗链,请将以下代码添加到网站目录下的【web.config】文件中,添加完毕后重启IIS生效。

<rule name="iis_security">

<match ignoreCase="true" url="^.*\.(jpg|jpeg|gif|png|js|css)$"/>

<conditions>

<add input="{HTTP_REFERER}" negate="true" pattern="://ynlongtou.com/.*"/>

<add input="{HTTP_REFERER}" negate="true" pattern="://www.ynlongtou.com/.*"/>

</conditions>

<action type="Rewrite" url="/404.htm"/>

</rule>