Hi,
I have created a rewrite map in iis 7 with one redirect rule. When I look at the rule in edit mode in iis it says that it is a permanent (301) redirect, which is what I want. How ever when I look in the web.config file I don't see anything to indicate that the redirect is permanent. Is this a bug? Do I need to add anything to the rule directly in the web.config to make the redirect permanent? Here is what I see in the web.config:
<rule name="Redirect rule1 for TestMap">
<match url=".*" />
<conditions>
<add input="{TestMap:{REQUEST_URI}}" pattern="(.+)" />
</conditions>
<action type="Redirect" url="{C:1}" appendQueryString="false" />
</rule>