mvc伪静态
程序员文章站
2022-08-02 11:24:33
方法一:IIS配置伪静态 方法二:项目配置伪静态 网站配置文件Web.config
方法一: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 }// 参数默认值
);