1
<rule name="test" stopProcessing="true">
                    <match url="\Test1.aspx$" />
                    <conditions logicalGrouping="MatchAll">
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                    </conditions>
                    <action type="Rewrite" url="Test1" appendQueryString="true" />
                </rule>

我正在使用上面的 url 重写配置来重写其中一个页面。我在浏览器中收到以下错误。谁能告诉我我做错了什么?

表达式“\Test1.aspx$”包含无效的转义序列。

4

1 回答 1

2

试试这个:

<match url="^/Test1\.aspx$" />
于 2012-06-27T10:19:53.807 回答