I am using Intelligencia for url rewirting. My problem is after url rewirting images and scripts lost becuase its urls changes.
<rewrite url="~/Pages/(.+).html" to="~/Default.aspx?PageId=$1"/>
if i remove pages from pattern it work correctly(like below)
<rewrite url="~/(.+).html" to="~/Default.aspx?PageId=$1"/>
You have to generate the links that are the same format after rewrite. AFAIK, the Intelligencia only rewrite the urls the come to server not the actual ones in your pages.