如何做到这一点。我打赌它与路由引擎有关。不过不确定。我将继续浏览互联网......
答案 0 :(得分:3)
你是对的,你会想要改变你的默认路线。它位于Global.asax.cs文件中(默认情况下)。
默认值如下:
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
这一行:
new { controller = "Home", action = "Index", id = UrlParameter.Optional }
是默认值。默认控制器名称为Home
,默认操作为Index
。把它们改成你想要的。
您可以详细了解路由here。
答案 1 :(得分:0)
查看您的默认路线。开箱即用,它将指向家庭控制器的索引方法。