我正在构建一个简单的演示应用,我想使用StaticFile
扩展名。要配置它,我有以下代码:
app.UseFileServer(new FileServerOptions()
{
FileSystem = new PhysicalFileSystem(@".\content"),
RequestPath = PathString.Empty,
EnableDefaultFiles = true
});
在content
文件夹中,当我按预期访问index.html
时,我有一个/
直接服务器,但文件未按预期提供。
content
index.html
app
lib
something.js
这是我拥有的文件结构,我想要的是访问网址something.js
上的/app/lib/something.js
,但是现在我需要使用/content/app/lib/something.js
我必须使用index.html
我想要。为什么/
会在我访问/index.html
时直接提供,而不是在我转到{{1}}时,而js文件也是如此。