URL 路由需要 /Home/Page?page=1 而不是 /Home/Page/1
本文关键字:Home Page 路由 page URL | 更新日期: 2023-09-27 18:35:04
我正在尝试构建我的 ASP.NET MVC 4.5项目以使用搜索引擎友好的URL。我正在使用以下路由映射。
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}/{title}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional, title = UrlParameter.Optional }
);
目的是让我可以创建这样的 URL:
Mysite.com/Home/Page/1/this-title-bit-is-just-for-show
但它失败了,我必须使用这样的 URL:
Mysite.com/Home/Page?page=1
如果重要,此链接指向的控制器操作如下:
public ActionResult Page(int page)
{
PostModel pm = new PostModel(page);
return View(pm);
}
我正在生成这样的 URL:
<a href="@Url.Action("Page", "Home", new { page = 1 })">1</a>
有人可以告诉我哪里出错了吗?
而不是
<a href="@Url.Action("Page", "Home", new { page = 1 })">1</a>
用
<a href="@Url.Action("Page", "Home", new { id = 1 })">1</a> //instead of page use id here
并更改操作方法,如下所示:-
public ActionResult Page(int id) //instead of page use id here
{
PostModel pm = new PostModel(id);
return View(pm);
}