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”。并把复制到本地改为“True”
大功告成
后记:找了原因所在,自己也在想是什么原因:之前一直MVC+EF来开发,后来发现要吐槽一点点EF就换到了ADO。改成了MVC4+ADO.NET 没有安装基础包。。。。
作者:PEPE
出处:http://pepe.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· .NET周刊【3月第1期 2025-03-02】
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· [AI/GPT/综述] AI Agent的设计模式综述
2014-03-16 画面渲染:实时渲染(Real-time Rendering)、离线渲染(Offline Rendering)[转]