RouteConfig中添加路由
形如
类似 <a href="Home_Index.ky">首页</a>
IIS8以下版本需要添加额外设置~
routes.MapRoute(
name: "ky",
url: "{controller}/{action}.ky",
defaults: new { controller = "Home", action = "Index" }//UrlParameter.Optional
);
形如
url: "{controller}/{action}/{id}.ky",
的话页面内跳转直接ActionName就不好用了 所以一般习惯直接*.ky?ID=1
类似 <a href="Home_Index.ky">首页</a>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true">
<remove name="FormsAuthentication" />
</modules>
</system.webServer>
IIS8以下版本需要添加额外设置~