问:需要设置限制指定ip 不能访问,如何设置限制指定IP段不能访问网站
答:您好,https://www.west.cn/faq/list.asp?unid=681 请参考这个说明限制ip,非常感谢您长期对我司的支持!
问:已经装了SSL部署的https的转向在web.config 里了,如何再增加限制IP的代码<?xml version="1.0" encoding="UTF-8"?><configuration> <system.webServer> <rewrite> <rules> <rule name="301" stopProcessing="true"> <match url="^(.*)$" ignoreCase="false" ></match> <conditions logicalGrouping="MatchAll"> <add input="{HTTP_FROM_HTTPS}" pattern="^on$" negate="true" ></add> </conditions> <action type="Redirect" url="https://www.txmzx.com/{R:1}" redirectType="Permanent" ></action> </rule> </rules> </rewrite> </system.webServer> </configuration>
答:您好,<rule></rule>这是一段完整的规则,同样您只需要复制屏蔽ip的这段内容,添加到</rule>后面保存就行了,非常感谢您长期对我司的支持!