您的位置:首页 > 其它

MVC4 本地正常运行,发布到IIS7->403 - 禁止访问: 访问被拒绝。

2015-03-16 17:19 330 查看
原文:MVC4 本地正常运行,发布到IIS7->403 - 禁止访问: 访问被拒绝。  上周五代码编写完成,计划发布一个版本测试,没想到发布到IIS7 竟然报错“403-禁止访问”。还真第一次遇到这种问题。。。。。




折腾了半天,终于解决。

1、提示报错403:

禁止访问: 访问被拒绝。您无权使用所提供的凭据查看此目录或页面。”

解决方案-在<system.webServer>后加上:<modules runAllManagedModulesForAllRequests="true"/>

2、有了第一步,出现的问题也不一样,很开心,至少有进展

“Server Error in '/' Application.

Runtime Error

Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".



如图:



3、按错误提示webconfig 加上:<customErrors mode="Off"/>



4、好像越来越明朗了

下载“Microsoft.Web.Infrastructure.dll”。DLL放入到Bin文件夹下。

大功告成



后记:找了原因所在,自己也在想是什么原因:之前一直MVC+EF来开发,后来发现要吐槽一点点EF就换到了ADO。改成了MVC4+ADO.NET 没有安装基础包。。。。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐