ASP.NET / IIS7 Url Rewrite maps not working
问题 I've followed the instructions Learn IIS's webpage for adding static redirects with a rewrite map for my asp.net application. The following is the config: <rule name="Redirect rule1 for Information" stopProcessing="true"> <match url=".*" /> <conditions logicalGrouping="MatchAll" trackAllCaptures="false"> <add input="{Information:{REQUEST_URI}}" pattern="(.+)" /> </conditions> <action type="Rewrite" url="{C:1}" appendQueryString="true" /> </rule> And <rewriteMaps> <rewriteMap name="Information