I have a simple ASP MVC project. Under this site I need to show plain .html files, without treating routes as controller/action.
I have folder documentation with file index.html in it. I need to have this accessible under www.mydomain.com/documentation, it returns 403. Currently it works only under www.mydomain.com/documentation/index.html
I have added
routes.Ignore("developers/");
into RouteConfig.cs
and in Startup.cs
for OwinAppBuilder
app.UseStaticFiles();
What should I do to have it accessible under www.mydomain.com/documentation/index.html ?