Search code examples
c#asp.net-corestatic-files

Loading Image from Asp.net core Web API 3.1 Folder outside of "wwwroot"


I'm trying to load images from a folder in Asp.net Core 3.1 Web API by entering URL in the browser. But getting 404 error.

enter image description here

Here are the configurations of my Startup.cs:

static-file-configuration enter image description here

What's wrong with my approach?


Solution

  • The issue was resolved after removing api/ from the URL. Thanks to @CaptainKenpachi for his comment.