Map route asp.net mvc
问题 I'm trying to make my url seo friendly. I need to make url with this structure www.domainname.com/article123. And with this route routes.MapRoute( "articlename", // Route name "aaaa/{articleID}", // URL with parameters new {action="DetailsByName",controller="Article"}, new string[] { "bssnew.Controllers" } // Parameter defaults); It doesn't work. MY route link looks like this @Html.RouteLink("aaa ","articlename", new {articleID="CentralPark",},new { @class = "item-link" }) But when I add