例如,我有一个这样的 url 结构:
/company/articles/{month}/{articleName}
我现在想将所有现有链接重定向到这样的东西:
/articles/{articleName}
我以为我可以做这样的事情,但它没有重定向。
routes.Add("articles",
new Route("company/articles/{month}/{articleName}",
new RedirectRouteHandler("articles/{articleName}")));