web.config中的ip范围模式

时间:2018-07-13 05:12:00

标签: asp.net regex web-config web.config-transform

我想将83.116.119.0之间的所有IP重定向到255.255.255.0 请帮助我在我的代码中写一个模式(IPTOBEBLOCKED)。 这是我的代码

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
    <rewrite>
        <rules>
            <clear />
            <rule name="Redirect Japan Users" enabled="true" stopProcessing="false">
                <match url=".*" />
                <conditions>
                    <add input="{HTTP_HOST}" pattern="IPTOBEBLOCKED"/>
                </conditions>
                <action type="Redirect" url="http://www.example.net/jp/" redirectType="Permanent" appendQueryString="false" />
            </rule>
        </rules>
    </rewrite>
</system.webServer>
</configuration>

0 个答案:

没有答案