方法一:IIS配置偽靜態 方法二:項目配置偽靜態 網站配置文件Web.config <system.webServer> <handlers> <add name="html_PageHandlerFactory" path="*.html" verb="*" type="System.Web.UI ...
方法一:IIS配置偽靜態
方法二:項目配置偽靜態
網站配置文件Web.config
<system.webServer>
<handlers>
<add name="html_PageHandlerFactory" path="*.html" verb="*" type="System.Web.UI.PageHandlerFactory" resourceType="Unspecified" preCondition="integratedMode"/>
</handlers>
</system.webServer>
路由配置頁面RouteConfig.cs
routes.MapRoute(
"Action1Html", // action偽靜態
"{controller}/{action}.html", // 帶有參數的 URL
new { controller = "Home", action = "Index", id = UrlParameter.Optional }// 參數預設值
);