IIS URL dynamic rewriting ways

2020-03-30 05:06发布

问题:

What are the ways of dynamic url rewriting in IIS, asp.net web page. I know one of them is to add rules into config dynamically, but that has some disadvantages.

回答1:

You can also use custom rewrite providers with the IIS Url Rewrite Module. There is a good article on the subject here.

The DbProvider might be the most useful to you if you want dynamic rewrite rules.



回答2:

  1. Url Rewriting using IIS Url Rewriting Module

URL Rewrite Module 2.0

  1. Asp.Net Routing

ASP.NET Routing

  1. Urlrewriting.Net

UrlRewritingNet.UrlRewrite

I would recommend using ASP.Net Routing.