我已经在IIS 8.0服务器上部署了我的MVC应用程序。 所有静态页面都运行正常,但是当我尝试登录时显示此错误。
错误消息
500 - Internal server error. There is a problem with the resource you are looking for, and it cannot be displayed.
Module ManagedPipelineHandler
Notification ExecuteRequestHandler
Handler System.Web.Mvc.MvcHandler
Error Code 0x00000000
以下是我的web.config文件中的代码
<system.web>
<trust level="Full"/>
<customErrors mode="Off"/>
<authentication mode="None" />
<compilation debug="true" targetFramework="4.5">
</compilation>
<httpRuntime targetFramework="4.5" />
</system.web>
<system.webServer>
<httpErrors errorMode="Detailed" />
<modules>
<remove name="FormsAuthenticationModule" />
</modules>
</system.webServer>
我已经设置了customerror mode="Off"
和httpErrors errorMode="Detailed"
我可以做些什么来解决此错误?