gpt4 book ai didi

virtual-directory - 无法使用虚拟目录访问 ASP.net Core 应用程序外部的文件

转载 作者:行者123 更新时间:2023-12-04 17:57:58 24 4
gpt4 key购买 nike

我在 IIS 中托管了 ASP.net Core 应用程序,我在 wwwroot\images 文件夹中添加了一个虚拟目录。但是我无法访问文件夹中的内容。谁能帮我?我需要在多个 ASP.net Core 站点之间共享图像,所以我尝试使用虚拟目录。

enter image description here

最佳答案

几周前我遇到了同样的问题。如果您的项目是跨平台的,您需要使用这样的虚拟文件夹:

app.UseFileServer(new FileServerOptions()
{
FileProvider = new PhysicalFileProvider(@"D:\files"),
RequestPath = new PathString("/files"),
EnableDirectoryBrowsing = false // you make this true or false.
});

iis 中的设置不起作用

关于virtual-directory - 无法使用虚拟目录访问 ASP.net Core 应用程序外部的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38789676/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com