gpt4 book ai didi

asp.net-mvc - 将index.html设置为默认页面

转载 作者:行者123 更新时间:2023-12-03 09:01:57 29 4
gpt4 key购买 nike

我有一个空的ASP.NET应用程序,并添加了index.html文件。我想将index.html设置为该站点的默认页面。

我试图右键单击index.html并将其设置为起始页,当我运行它时,URL是:http://localhost:5134/index.html,但是我真正想要的是当我键入:http://localhost:5134时,它应该加载index.html页。

我的路线配置:

public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
}

最佳答案

我在路由配置中添加了一条指令,以忽略空路由,这解决了我的问题。

routes.IgnoreRoute(""); 

关于asp.net-mvc - 将index.html设置为默认页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22656945/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com