加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

c# – MVC6默认页面

发布时间:2020-12-15 08:06:04 所属栏目:百科 来源:网络整理
导读:也许我只是醒了太多时间并完全监督了一些事情,但我正在使用MVC6 ASP.NET 5.0开发一个AngularJS网站.在我的wwwroot里面,我有一个index.html页面,它运行得很好,但随后应用了更新,现在突然间我只得到一个空白的白色屏幕:开发人员工具告诉我: 无法加载资源:服
也许我只是醒了太多时间并完全监督了一些事情,但我正在使用MVC6 ASP.NET 5.0开发一个AngularJS网站.在我的wwwroot里面,我有一个index.html页面,它运行得很好,但随后应用了更新,现在突然间我只得到一个空白的白色屏幕:开发人员工具告诉我:

无法加载资源:服务器响应状态为404(未找到)

在我的创业公司里面我有以下内容:

public void Configure(IApplicationBuilder app)
{
    app.UseDefaultFiles(new Microsoft.AspNet.StaticFiles.DefaultFilesOptions() { DefaultFileNames = new[] { "index.html" } });
    app.UseMvc();
}

有些原因我在调试时仍然得到一个空白的白页,没有任何加载.

解决方法

您还必须指定app.UseStaticFiles(). From the docs:

In order for your Web app to serve a default page without the user having to fully qualify the URI,call the UseDefaultFiles extension method from Startup.Configure as follows. Note that you must still call UseStaticFiles as well. This is because UseDefaultFiles is a URL re-writer that doesn’t actually serve the file. You must still specify middleware (UseStaticFiles,in this case) to serve the file.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读