ASP.NET MVC Routing / SEO Friendly URL
问题 I'm trying to do something like stackoverflow Take a link from stackoverflow for example: Hidden Features of C#? if you remove the last part (Hidden Features of C#?) it still returns the same result. For my routing in Global.asax I tried doing something like "{action}/{id}/{title}" On my page, this is my link: <%= Html.ActionLink(video.Title, "Details", "Videos", new {id = video.ID, title = video.Title.Replace(" ", "-")}, null) %> This does what I want it to do for the most part except that