HTTP错误403.14-禁止使用ASP.NET Web应用程序的调试



我正在尝试启动ASP.NET Web应用程序

但是我通过调试出现了这个错误:

HTTP Error 403.14 - Forbidden The Web server is configured to not list
the contents of this directory.
Module
   DirectoryListingModule
Notification
   ExecuteRequestHandler
Handler
   StaticFile
Error Code
   0x00000000

不确定我必须做什么,但是正如它所表明的,我必须遵循此说明,但是当我尝试在Windows 10上打开IIS Manager时,它说Windows找不到" Inetmgr'.or"'inetmgr.exe'

所以不确定我该怎么做才能解决这个错误。

,因为似乎没有安装完整的IIS,请尝试将其添加到您的Web.config中,该目录中位于您要浏览的目录中:

<system.webServer>
    <directoryBrowse enabled="true"/>
</system.webServer>

...至少您可以解决这个问题。如果您要进行调试,请很好,但是您必须认真考虑这是否确实是您要在生产服务器上允许的。

相关内容

  • 没有找到相关文章

最新更新