asp.net – 默认情况下提供静态文件index.html

前端之家收集整理的这篇文章主要介绍了asp.net – 默认情况下提供静态文件index.html前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个非常简单的角度应用程序项目,只需要提供来自wwwroot的静态文件.这是我的Startup.cs:
public class Startup
{
    public void ConfigureServices(IServiceCollection services) { }

    public void Configure(IApplicationBuilder app)
    {
        app.UseIISPlatformHandler();
        app.UseStaticFiles();
    }

    // Entry point for the application.
    public static void Main(string[] args) => WebApplication.Run<Startup>(args);
}

每当我使用IIS Express或web启动项目时,我总是必须导航到/index.html.我该如何制作它以便我可以访问根(/)并仍然获得index.html?

解决方法

您想要服务器默认文件静态文件
public void Configure(IApplicationBuilder application)
{
    ...
    // Enable serving of static files from the wwwroot folder.
    application.UseStaticFiles();
    // Serve the default file,if present.
    application.UseDefaultFiles();
    ...
}

或者,您可以使用UseFileServer方法,该方法使用单行而不是两行来执行相同的操作.

public void Configure(IApplicationBuilder application)
{
    ...
    application.UseFileServer();
    ...
}

有关更多信息,请参见documentation.

原文链接:https://www.f2er.com/aspnet/246501.html

猜你在找的asp.Net相关文章