方法很简单:在htaccess文件中加入屏蔽IP的字段。
同问,感觉阿里很坑,很多方法都不行,如其中这个也不行。<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<defaultDocument>
<files>
<clear />
<add value="index.html" />
<add value="index.asp" />
</files>
</defaultDocument>
<httpErrors errorMode="DetailedLocalOnly">
<remove statusCode="404"/>
<error statusCode="404" path="/404.asp" responseMode="ExecuteURL"/>
</httpErrors>
<rewrite>
<rules>
<rule name="WWW Redirect" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTP_HOST}" pattern="^baidu.com$" />
</conditions>
<action type="Redirect" url="http://www.baidu.com/{R:0}" redirectType="Permanent" />
</rule>
<rule name="band ip" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAny">
<add input="%{HTTP_X_FORWARDED_FOR}&%{REMOTE_ADDR}" pattern="(8.8.4.4|8.8.8.)" />
</conditions>
<action type="AbortRequest" />
</rule>
</rules>
</rewrite>
<directoryBrowse enabled="false" />
</system.webServer>
</configuration>
需要设置IP段,打比方你的IP是10.11.11.01,你同局域网下的好友就多数是10.11.01.1到10.11.255.255之间的IP段,你就在网络设置里设置你需要的号段。能明白吧?在这个号段下要是还想删除别人就只能把他拉黑。不知道为什么上传不了照片,打开飞秋界面,设置里的网段好友设置,里的从什么到什么的IP段,设置好就行了欢迎分享,转载请注明来源:夏雨云
评论列表(0条)