ASP.NET MVC 4 提供了一种工具箱方式来编写您的应用程序。您在浏览器中看到的 URL 来自 Routing,它努力将 url 转换为应用程序路由和应用程序路由到 url。
1) 默认的 ASP.NET MVC 4 模板项目在 App_Start 文件夹中带有一个名为 RouteConfig 的文件,您必须在其中配置应用程序的路由。
2) 路由有优先顺序,因此,将此路由放在默认路由之前:
routes.MapRoute(
name: "RouteForPageId",
url: "{pageId}/{action}",
//controller = "Home" and action = "Index" are the default value,
//change for the Controller and action that you have
//pageId is the parameter from the action that will return the page
defaults: new { controller = "Home", action = "Index" }
);
现在您可以输入 myappdomain/1220/index 示例。
希望这对你有帮助!在这里查看更多信息ASP.NET 路由!