在.Net Core 中Web项目 中的Start.cs文件中配置 启用静态资源访问
元数据方法文件
//
// 摘要:
// Enable all static file middleware (except directory browsing) for the current
// request path in the current directory.
//
// 参数:
// app:
public static IApplicationBuilder UseFileServer(this IApplicationBuilder app);
意为:
启用当前的所有静态文件中间件(目录浏览除外)
当前目录中的请求路径。
作用:
当前是一个大型的Lims项目,集成了很多api,文件,站点,网站等等,项目分工协作, 现在是为了启用当前 Lims.Web的Index.html 初始化起始页(将Index.html设置为起始页)。