请考虑以下路线:
routes.MapRoute( "Service",// Route name "service/",// URL with parameters new {controller = "CustomerService",action = "Index"} // Parameter defaults );
使用Url.Action(“服务”,“CustomerService”)生成/ service而不是期望/ service /的URL
有没有办法让这个工作,或者我是否必须求助于实现自己的RouteBase派生路由?
解决方法
Legenden – 没有立即解决问题的办法.你可能已经在
Jason Young’s blog post上遇到过这个问题,这是非常有用的.
Scott Hanselmann posted a reply到这里,基本上说他不认为这是一个大问题,如果是,你可以利用新的IIS7重写模块来解决它.
但最终,你可能想看一下murad在StackOverflow上发布的类似问题的解决方案:Trailing slash on an ASP.NET MVC route