Am I not doing this correct?
<urlrewrites>
<rule name="Redirect/toHTML" stopProcessing="true">
<match url="(.*)/(.*)" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_METHOD}" pattern="^GET$" />
</conditions>
<action type="Redirect" url="{R:1}.html{R:2}" appendQueryString="true" />
</rule>
</urlrewrites>
After as much research as I could do, I have come up with this to try and rewrite all trailing slashes with .html. To be honest though, I'm not even sure my web.config file is taking affect. Is there anything wrong with this rule?
