URL重写iis服务器

URL Rewrite iis server

我想将 url 重写为 index.html。下面的 web.config 会一直执行到第一条路径。 例如:- test.com/test1 to test.com/index.html 但它不适用于多个路径。例如:- test.com/test1/test2

我现在的web.config

<configuration>
    <system.webServer>
        <rewrite>
        <rules>
            <rule name="redirect all requests" stopProcessing="true">
                <match url="^(.*)$" ignoreCase="false" />
                <conditions logicalGrouping="MatchAll">
                    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" pattern="" ignoreCase="false" />
                </conditions>
                <action type="Rewrite" url="index.html" appendQueryString="true" />
            </rule>
        </rules>
    </rewrite>
    </system.webServer>
</configuration>

我不确定我在这里遗漏了什么。请知道的朋友写出正确的web.config。 谢谢。

你可以试试这条规则:

<rule name="test" stopProcessing="true">                    
  <match url="(.*)" />
    <conditions>
       <add input="{REQUEST_URI}" pattern="^/([^/]+)" />
    </conditions>
  <action type="Redirect" url="http://test.com/{C:1}/index.com" redirectType="Found" />
</rule>