在iis重写规则中匹配URL

时间:2017-05-17 09:35:05

标签: iis

在localhost / myapp中拥有一个托管在iis中的应用,其目的是重定向所有匹配" localhost / myapp / 的网址。" to" localhost / index1.htm"在更新时的一段时间。使用正则表达式我尝试使用" ^ myapp匹配网址。"但它不匹配。如果我们删除' ^'但是," ^ myapp。"据我所知,' ^'意味着在" localhost /"之后开始从路径的开头搜索,我可能是错的,任何人都可以在这里说清楚,谢谢。

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule name="test" enabled="true" stopProcessing="true">
                    <match url="^myapp.*" />
                    <action type="Rewrite" url="index1.htm" appendQueryString="true" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>

0 个答案:

没有答案