I'm using the UrlRewriter.NET library to implement url rewriting for my asp.net website. The rewriting rules are currently being read from the web.config
file like this
<rewriter>
<rewrite url="/test-web-page" to="~/realwebpage.aspx"/>
</rewriter>
How do I make the library read my rewriting rules from another file rather than the web.config
?