3

例如,我有一个这样的 url 结构:

/company/articles/{month}/{articleName}

我现在想将所有现有链接重定向到这样的东西:

/articles/{articleName}

我以为我可以做这样的事情,但它没有重定向。

routes.Add("articles",
                new Route("company/articles/{month}/{articleName}",
                    new RedirectRouteHandler("articles/{articleName}")));
4

1 回答 1

0

使用RouteMagic 库可以轻松完成这些事情。您可以在 Phil Haack 的博客文章中找到一个示例。

于 2012-07-27T03:59:53.940 回答