我希望能够为我的mvc 2应用程序创建像facebook这样的个人资料网址。
示例,我希望网址看起来像www.mywebsite.com/{profile_name},并将用户定向到他们的个人资料页面。
但问题是它没有正确路由。当我添加
routes.MapRoute(
"Profile", // Route name
"{profile_name}", // URL with parameters
new { controller = "Profile", action = "Index", profile_name = UrlParameter.Optional } // Parameter defaults
);
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
我得到了资源无法找到。
有人可以告诉我最好的方法。
提前致谢。