我是MVC的新手,所以请在这里帮助我。
我需要将myhost.com/contactus
重定向到myhost.com/aController/aView
。
我尝试了
routes.MapRoute(
name: "contactus",
url: "contactus",
defaults: new { controller = "aController", action = "aView"}
);
但是没有运气。我想念的是什么:(
答案 0 :(得分:1)
您可以尝试以下方法:
routes.MapRoute(
"contactus",
"{controller}/{action}/{id}",
new { controller = "aController", action = "aView", id = UrlParameter.Optional },
);