Even small detail, it still took me half a day to figure out why rewriter was not hooking up. Main problem was that it should be added to system.webServer instead of system.web when using integrated app pool, which is set by default:
<system.webServer>
<modules>
<add type="Intelligencia.UrlRewriter.RewriterHttpModule, Intelligencia.UrlRewriter" name="UrlRewriter" preCondition="integratedMode" />
</modules>
<system.webServer>
This could be noted in the configuration section.
Even small detail, it still took me half a day to figure out why rewriter was not hooking up. Main problem was that it should be added to system.webServer instead of system.web when using integrated app pool, which is set by default:
This could be noted in the configuration section.