IIS的简单URL重写规则

时间:2016-10-05 03:12:31

标签: iis

我需要一个简单的IIS重写规则。如果网址后面的网址不包含 "/i" ,我想添加它。

例如:

如果 www.abc.com/sample/test.aspx

我需要将规则更改为:

www.abc.com/i/sample/test.aspx

1 个答案:

答案 0 :(得分:0)

你的规则应该是这样的:

<rule name="prepend i">
    <match url=".*" />
    <conditions>
        <add input="{REQUEST_URI}" pattern="^/i/" negate="true" />
        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
    </conditions>
   <action type="Redirect" url="/i/{R:0}" />
</rule>