diff --git a/aspnet/conceptual-overview/aspnet.rst b/aspnet/conceptual-overview/aspnet.rst index 71d212d8c5..8575e8aa69 100644 --- a/aspnet/conceptual-overview/aspnet.rst +++ b/aspnet/conceptual-overview/aspnet.rst @@ -110,7 +110,7 @@ The content root is the base path to any content used by the app, such as its vi Web root -------- -The web root of your app is the root location in your project from which HTTP requests are handled (for example handling of static file requests). When using the static files middleware only files from the web root folder are accessible; the other files in the content root **cannot** be accessed remotely. The default web root path is `/wwwroot`, but you can specify a different location using the `WebHostBuilder`. +The web root of your app is the directory in your project for public, static resources like css, js, and image files. The static files middleware will only serve files from the web root directory (and sub-directories) by default. The web root path defaults to `/wwwroot`, but you can specify a different location using the `WebHostBuilder`. Configuration ------------- @@ -146,4 +146,4 @@ Next steps - :doc:`/tutorials/first-mvc-app/index` - :doc:`/tutorials/your-first-mac-aspnet` - :doc:`/tutorials/first-web-api` -- :doc:`/fundamentals/index` \ No newline at end of file +- :doc:`/fundamentals/index`