想在路由中增加約束,實現效果如下: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 關注
- 409 瀏覽
添加回答
舉報
0/150
提交
取消