ASP.NET路由问题
|
如果我转到mysite / Catalog,它会中断。怎么解决呢?
routes.MapRoute(
\"Localization\", // Route name
\"{lang}/{controller}/{action}/{id}\", // URL with parameters
new { controller = \"Home\", action = \"Index\", id = UrlParameter.Optional } // Parameter defaults
);
routes.MapRoute(
\"Default\", // Route name
\"{controller}/{action}/{id}\", // URL with parameters
new { controller = \"Home\", action = \"Index\", id = UrlParameter.Optional} // Parameter defaults
);
routes.MapRoute(
\"Root\",
\"\",
new { controller = \"Home\", action = \"Index\", id = \"\" }
);
没有找到相关结果
已邀请:
1 个回复
功飘