首先在StartUp.cs文件里面注册管道
如:需要在网站里面的files的文件对外访问
app.UseStaticFiles();
app.UseFileServer(new FileServerOptions
{
FileProvider = new PhysicalFileProvider(
Path.Combine(Directory.GetCurrentDirectory(), "files")),
RequestPath = "/files"
});
这段代码在app.UseMvc();之上 对外访问的地址如下:http://服务器ip:端口/files/123.htm
在服务器端
1、打开“IIS信息服务管理器” -> 选择你发布的网站 -> 选择功能视图中的“身份验证” -> 右键匿名身份验证,选择“编辑”,选择“特定用户IUSR”;
2、右键要发布的网站文件夹,选择“安全” -> “编辑” -> “添加” -> “高级” -> “立刻查询” -> 选择“IUSR”用户,然后保存;
标签:files,文件,netcore,静态,app,选择,访问,地址,右键
From: https://www.cnblogs.com/caozhengze/p/17201174.html