Using external config file for UrlRewriter.NET

2019-07-09 02:33发布

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?

1条回答
狗以群分
2楼-- · 2019-07-09 03:05

Yes you can - it is mentioned here on this page http://urlrewriter.net/ interesting looking at their examples the do not specify exactly hw to do it. But I did some digging on their support forum and found this example:

<rewriter configSource="YOURREWRITEFILE"> 
    </rewriter> 

Full dialogue can be read here:

https://groups.google.com/forum/?fromgroups#!searchin/UrlRewriter/external$20config/urlrewriter/TgKVlJ9bO_s/CgtEEpcMIrkJ

查看更多
登录 后发表回答