在网站根目录下创建一个web.config文件,并写入如下代码,若已经存在规则,请不要覆盖,注意添加合理位置。
若只允许一个ip访问:请将 118.118.118.118 换成您自己的ip即可。
若只允许多个ip访问:请将 (118.118.118.118) 改成 (118.118.118.118|118.118.1.14|123.123.123.123) 即可,最后一组ip后面不要加竖线。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="band ip" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAny">
<add input="%{HTTP_X_FORWARDED_FOR}&%{REMOTE_ADDR}&%{HTTP_X_Real_IP}" pattern="(118.118.118.118)" ignoreCase="false" negate="true" />
</conditions>
<action type="AbortRequest" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
亲爱的:若该文章解决了您的问题,可否收藏+评论+分享呢?
文章评论 本文章有个评论