gpt4 book ai didi

asp.net-mvc-2 - 将用户从类似 URL 的 SEO 重定向到 ASP.NET MVC 2 中的 Controller 操作

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:30:44 27 4
gpt4 key购买 nike

是否可以在不丢失原始地址的情况下将静态 seo“友好”url 地址重定向到 Controller /操作?

例如:

我怎样才能使它在 ASP.NET MVC 2.0 上运行?

我正在看herehere在测试期间没有运气。

最佳答案

在 Global.asax 中定义如下路由:

 routes.MapRoute(
"findEmployess", // Route name
"find-the-best-employees", // URL with parameters
new { controller = "SearchEmployee", action = "Index" } // Parameter defaults
);

为此,您需要在生成 url 时使用路由名称,使用此 html 帮助程序

<%: Html.RouteLink("Search Employees","findEmployess")%>

你还需要在默认路由之前定义这条路由:

//Your custom routes goes HERE before the default route

routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);

关于asp.net-mvc-2 - 将用户从类似 URL 的 SEO 重定向到 ASP.NET MVC 2 中的 Controller 操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6448562/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com