2
HTTP Error 403.14 - Forbidden
The Web server is configured to not list the contents of this directory.
Most likely causes:

    A default document is not configured for the requested URL, and directory browsing is not enabled on the server.

Things you can try:

    If you do not want to enable directory browsing, ensure that a default document is configured and that the file exists.
    Enable directory browsing.
        Go to the IIS Express install directory.
        Run appcmd set config /section:system.webServer/directoryBrowse /enabled:true to enable directory browsing at the server level.
        Run appcmd set config ["SITE_NAME"] /section:system.webServer/directoryBrowse /enabled:true to enable directory browsing at the site level.
    Verify that the configuration/system.webServer/directoryBrowse@enabled attribute is set to true in the site or application configuration file.

VS12 で最初のアプリケーションを実行しようとすると、上記のエラーが発生します。何がうまくいかないのか、どうすれば修正できるのか考えていますか? VS10では、この種のエラーメッセージはないと思います

4

1 に答える 1

1

ディレクトリ リストを有効にするか、既定のドキュメント (default.aspx、default.htm...) をサイトのルートに追加する必要があります。

ディレクトリ リストの詳細については、次を参照してください。ディレクトリ リストを有効にする

于 2012-08-10T02:35:44.483 に答える