我在IIS中托管了ASP.net Core应用程序,我在wwwroot \ images文件夹中添加了一个虚拟目录。但我无法访问该文件夹中的内容。谁能帮我?我需要在多个ASP.net Core站点之间共享图像,所以我尝试使用虚拟目录。
答案 0 :(得分:0)
app.UseFileServer(new FileServerOptions()
{
FileProvider = new PhysicalFileProvider(@"D:\files"),
RequestPath = new PathString("/files"),
EnableDirectoryBrowsing = false // you make this true or false.
});
在iis中设置将无法正常工作