我是使用IIS Url Rewrite的新手。我安裝了它並使用IIS設置了一個規則,但是當我嘗試訪問我的本地主機中的一個URL時,沒有任何反應。以下是IIS放在我的web.config中的內容。當我訪問這個網址mysite/srcc_development_2012/login/default.aspx時,基於我設置的規則應該重定向到google,但它不起作用。我錯過了什麼?IIS URL重寫 - IIS 7
<rewrite>
<rules>
<rule name="SRCC" patternSyntax="Wildcard" stopProcessing="true">
<match url="mysite/srcc_development_2012/*" />
<action type="Redirect" url="http://www.google.com" />
<conditions logicalGrouping="MatchAny">
</conditions>
</rule>
</rules>
</rewrite>