0

私はasp、net MVC 4プロジェクトを持っています。簡単なテストのためにホスティング会社 www.somee.com を選びました。私がしたことは、zipファイルをアップロードして解凍することでした。URLを開いたところ、エラーが発生しました。

   IIS 8.0 Detailed error

   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 using IIS Manager.
    Open IIS Manager.
    In the Features view, double-click Directory Browsing.
    On the Directory Browsing page, in the Actions pane, click Enable.
    Verify that the configuration/system.webServer/directoryBrowse@enabled attribute is set to true in the site or application configuration file.

    Detailed Error Information:
    Module     DirectoryListingModule
    Notification       ExecuteRequestHandler
    Handler    StaticFile
    Error Code     0x00000000
    Requested URL      http://xxxx.somee.com:80/
    Physical Path      d:\DZHosts\LocalUser\username\www.xxxx.somee.com
    Logon Method       Anonymous
    Logon User     Anonymous

ローカル IIS またはサーバー IIS で試す必要があるということですか? しかし、サーバー側では制御できません。

4

2 に答える 2

2

ここから始めます

  1. MVC がホストが提供する機能であることを確認します。そうしないとサイトは機能せず、ルーティングが失敗するため、このようなエラーが発生する可能性があります
  2. ホストのサポートに連絡してください。私が過去に使用したホストはどれも、このような問題に非常に役立ち、何が問題なのかを把握するためにより多くのアクセスを提供してくれました

bin デプロイが必要な場合の情報を次に示します。

MVC3 アプリを実行している .NET 4 用の MVC4 と展開を bin できますか?

http://haacked.com/archive/2011/05/25/bin-deploying-asp-net-mvc-3.aspx

幸運を

于 2013-06-19T13:18:01.597 に答える