Following to my earlier post – on URL Manipulation
For IIS 7 – Can use URL Rewrite Rule -
<rewrite>
<rules>
<rule name="HtmlRewrite">
<match url="(.*)(\.\w+)$" />
<action type="Rewrite" url="{R:1}" />
</rule>
</rules>
</rewrite>
Refer IIS URL rewriting
No comments:
Post a Comment