I have an ASP.NET MVC 6 project with the following structure:
project/
wwwroot/
custom/
project.json
I want to serve files from custom
as it if was a virtual folder into http://localhost/custom
without having to copy them during development.
Is it possible to do this in vNext without a virtual folder from IIS (say, using the StaticFile middleware)?
David Driscoll
You can set the file provider on the options object when using the middleware.
app.UseStaticFiles(new StaticFileOptions() {
FileProvider = new PhysicalFileProvider(@"C:\Path\To\Files"),
RequestPath = new PathString("/somepath")
})
and
来源:https://stackoverflow.com/questions/31946949/is-it-possible-to-serve-static-files-from-outside-the-wwwroot-folder