This content has been marked as final.
Show 1 reply
-
1. Re: IIS Rewrite
Ben Pleysier May 13, 2013 6:37 AM (in response to ottz0)Place the following, adjusted to your environment, in a root directory file called web.config
<rewrite>
<rules>
<rule name="test1" stopProcessing="true">
<match url="http://your-domain.com/index.htm" />
<action type="Redirect" url="http://your-domain.com/" redirectType="Permanent" />
</rule>
</rules>
</rewrite>



