0

みなさん、こんにちは。ISS経由で自分のWebサイトを公開すると、以下に示すようにこのエラーが発生します。

Server Error in '/WebCity' Application.
--------------------------------------------------------------------------------

The resource cannot be found. 
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly. 

Requested URL: /WebCity/Views/Home/Index.cshtml
4

1 に答える 1

1

このビット:Requested URL: /WebCity/Views/Home/Index.cshtml特定のURLを探していることを意味しますが、そうすべきではありません。

つまり、本来あるべきものではhttp://domain.com/WebCity/Views/Home/Index.cshtmlなく、移動したように見えます。http://domain.com/WebCity/

ブラウザに間違ったURLを入力しているか、MVCフレームワークがサーバーにインストールされていません。

フレームワークがインストールされていなくても心配しないでください。Phil Haackのメモについては、こちらをご覧ください:http bin deploy: //haacked.com/archive/2011/05/25/bin-deploying-asp-net-mvc-3.aspx

于 2012-08-22T12:49:38.297 に答える