Just something to remember for all the people who are using the Intelligencia.UrlRewriter httpmodule for friendly urls.
Since I upgraded to Windows 7 I encoutered a problem with IIS 7 and websites using the rewrite module.
The default page (eg. default.aspx) did not fire the urlrewrite module anymore.
Thanks to Scott Guthrie’s wonderfull article about url rewriting I managed to get it working again.
Just add a few lines of code to your web.config and you’re set.
<system.webServer>
<modules runAllManagedModulesForAllRequests=”true”>
<add name=”UrlRewriter” type=”Intelligencia.UrlRewriter.RewriterHttpModule” />
</modules>
<validation validateIntegratedModeConfiguration=”false” />
</system.webServer>
for more info read Scott’s blog about url rewriting.