ASP.NET MVC 4 网站。
有一个名为“Locations”的数据库表,它只包含三个可能的位置(例如“CA”、“NY”、“AT”)默认路由是:
http://server/Location/ --- list of Locations
http://server/Location/NY --- details of NY-Location
如何在没有 /Location/ - 位的情况下创建自定义路线?(我觉得更好一点)
以便
http://server/NY - details of NY
http://server/AT - details of AT
.... etc...
和
http://server/Location --- list of Locations