我试图启动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
不确定它是否与我必须做的完全一样,但是如图所示,我必须遵循此instruction但是当我尝试在Windows 10上打开IIS Manager时,它会说Windows无法找到' inetmgr'。或' inetmgr.exe'
所以不确定我要做些什么才能弄清楚这个错误。
答案 0 :(得分:2)
由于您似乎没有安装完整的IIS,请尝试将其添加到您要浏览的目录中的web.config中:
<system.webServer>
<directoryBrowse enabled="true"/>
</system.webServer>
...至少让你可以解决这个问题。如果您正在进行调试,那很好,但您必须认真考虑这是否真的是您要在生产服务器上允许的内容。