想在路由中增加约束,实现效果如下:http://localhost/admin/1.html识别为http://localhost/admin/1应该怎么弄呀,不想在IIS中重写url,看了路由约束什么的,好像不能实现这个~
1 回答
GCT1015
TA贡献1827条经验 获得超4个赞
在默认路由前加入以下路由:
routes.MapRoute(
null,
"{controller}/{action}/{id}.html",
new { controller = "Admin", action = "Index", id = UrlParameter.Optional }
);
- 1 回答
- 0 关注
- 386 浏览
添加回答
举报
0/150
提交
取消