使用 web.config 重定向特定的 ip 范围
redirect specific ip range using web.config
我想使用 web.config 文件
重定向特定的 ip 范围
不熟悉web.config
这是我的代码
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<clear />
<rule name="Redirect Japan Users" stopProcessing="true">
<match url=".*" />
<conditions>
<add ipAddress="83.116.119.0" subnetMask="255.255.255.0"/>
</conditions>
<action type="Redirect" url="http://www.example.net/jp/" redirectType="Permanent" appendQueryString="false" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Try this:
//Block a particular IP
<security>
<ipSecurity allowUnlisted="true">
<clear/>
<add ipAddress="IPTOBEBLOCKED"/>
</ipSecurity>
</security>
//Redirect an IP to another domain
<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>
我想使用 web.config 文件
重定向特定的 ip 范围不熟悉web.config
这是我的代码
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<clear />
<rule name="Redirect Japan Users" stopProcessing="true">
<match url=".*" />
<conditions>
<add ipAddress="83.116.119.0" subnetMask="255.255.255.0"/>
</conditions>
<action type="Redirect" url="http://www.example.net/jp/" redirectType="Permanent" appendQueryString="false" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Try this:
//Block a particular IP
<security>
<ipSecurity allowUnlisted="true">
<clear/>
<add ipAddress="IPTOBEBLOCKED"/>
</ipSecurity>
</security>
//Redirect an IP to another domain
<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>