• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ASP.NETMVC5伪静态之支持*.html路由

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

参考了例子 到自己实践还是有不少坑要踩,这种文章,你说它好还是不好呢

注意这里的版本是ASP.NET MVC 5

首页的URL为  http://localhost:58321/index.html  或   http://localhost:58321/

第一步是让 ASP.NET MVC 5 支持 html后缀的请求, 到ASP.NET MVC 5 项目根目录的的Web.config在增加配置

  <system.webServer>
    <handlers>
      <add name="HtmlFileHandler" path="*.html" verb="GET" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
    </handlers>
  </system.webServer>
</configuration>

应该有2种方式,只实践出一种,有2处改动,一.Global.asax.cs增加处理方法, 二.在RouteConfig.cs增加对index.html的路由
在Global.asax.cs中增加

protected void Application_BeginRequest()
{
    HttpContext context = HttpContext.Current;
    string requestHtmlPath = context.Request.Path;
    //如果请求中带有html的后缀,需要进行处理
    if (requestHtmlPath.EndsWith("index.html"))
    {
        context.RewritePath("~");
    }
}

在RouteConfig.cs

routes.MapRoute(
    name: "HomePage",
    url: "index.html",
    defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional },
    namespaces: new[] { "CBBC.XXX.Controllers" }
)

 

尝试了 ASP.NET MVC5 新特性:Attribute路由

配了之后 http://localhost:58321/index.html 可以跳转到 HomeController的Index方法 但 http://localhost:58321/ 无法找到页面

[HttpGet]
[Route("index.html")]
public ActionResult Index()
{
    return View();
}

发现http://localhost:58321/ 无法找到页面,暂时未找到解决方案.

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
asp.net利用itextsharp生成pdf文档发布时间:2022-07-10
下一篇:
ASP.Net WebForm温故知新学习笔记:一、aspx与服务器控件探秘发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap