要先安装那个rewrite_x64_zh-CN,然后在站点的web.config里面增加规则
要加在<rules></rules>里面,这是个xml文档,需要按照结构添加
增加的内容如下:
<rule name="屏蔽恶意UA"> <match url="^(.*)$" ignoreCase="false" /> <conditions> <add input="{HTTP_USER_AGENT}" matchType="Pattern" pattern="UCBrowser|Mobile\ Safari|SemrushBot|python|MJ12bot|AhrefsBot|AhrefsBot|hubspot|opensiteexplorer|leiki|webmeup|ZoominfoBot|x86_64|LieBaoFast|Mb2345Browser|MQQBrowser|^$" ignoreCase="true" negate="false" /> </conditions> <action type="AbortRequest" /> </rule>
换行什么的无所谓,但不能加在其他rule中间,不然结构就坏了。
也可以在管理界面这么搞:
比葫芦画瓢就可以了。