HTTP Error 403.14 : The Web server is configured to not list the contents of this directory

When you publish your web site on IIS , you may get an error like this.

HTTP Error 403.14 – Forbidden
The Web server is configured to not list the contents of this directory.

Resolution 1 : Check your Application Pool’s .NET Framework version !

When you add a new web site without default application pool, IIS set default .NET Framework 2 version for your site. So you have to change your application pool’s framework version.

  1. Open IIS Manager
  2. Go to application pools
  3. Select your app pool and click basic settings to configure.

application pool iss manager

Resolution 2 : Edit your web.config file

keep this into your web config file then rename the add value=”yourwebformname.aspx”

or

source : http://stackoverflow.com/questions/18981118/http-error-403-14-forbidden-the-web-server-is-configured-to-not-list-the-con

Resolution 3 : Enable the Directory Browsing feature in IIS

  1. Go to IIS Manager. (If you dont know to do this, click Start, click Run, type inetmgr.exe, and then click OK.)
  2. In IIS Manager find your Web sites, and then click the website that you want to modify.
  3. In the Features view, double-click Directory Browsing.
  4. In the Actions pane, click Enable.

Resolution 4 : Add a default document

  1. Start IIS Manager. To do this, click Start, click Run, type inetmgr.exe, and then click OK.
  2. In IIS Manager, expand server name, expand Web sites, and then click the website that you want to modify.
  3. In the Features view, double-click Default Document.
  4. In the Actions pane, click Enable.
  5. In the File Name box, type the name of the default document, and then click OK.

Resolution 5 : Enable the Directory Browsing feature in IIS Express

Note This method is for the web developers who experience the issue when they use IIS Express.

To do this, follow these steps:
Open a command prompt, and then go to the IIS Express folder on your computer. For example, go to the following folder in a command prompt:
C:\Program Files\IIS Express
Type the following command, and then press Enter:
appcmd set config /section:directoryBrowse /enabled:true
For more information about the appcmd command, view How to use AppCmd.exe.

source : https://support.microsoft.com/en-us/kb/942062

Read More