在 RouteConfig.cs 我有这样的自定义控制器路由
routes.MapRoute("User", "user/{name}", new { controller = "User", action = "Index",name =""});
我也有带索引方法的 Home 控制器
//
// GET: /User/
public ActionResult Index()
{
return Content("stinky");
}
用户控制器的索引视图
但是当路由localhost:11963/User/ *
我收到错误
“/”应用程序中的服务器错误。