我知道这已经回答了几次,但没有一个解决方案适用于我。我发布了我的ASP.NET MVC 3应用程序(它只是互联网模板没有任何改变),看看我能否让它公开工作。但是,当我访问该网站时,显示403错误。来自PHP / linux背景,我很困惑,没有线索在哪里看。我一直在学习.NET大约8-9个月,我以前测试过的一切都是通过VS2010在本地开发的服务器上。它几乎看起来像服务器不知道它应该是一个MVC应用程序,或者我必须更改我的路由。
无论如何,我检查确保服务器设置是.NET 4.任何帮助将不胜感激。
另外,这是一个使用arvixe的共享托管环境。
解决方法
对我而言,这是一个伎俩(
Getting 404.0 error for ASP.NET MVC 3 app on IIS 7.0 / Windows Server 2008的原始答案)
You actually just reminded me that I needed to fix this issue in an
enviroment here. If your situation is the same as mine then it’s a
simple fix.Just add the following to your web config:
<system.webServer> <modules runAllManagedModulesForAllRequests="true" />
确保您选择了“ASP.Net 4.0”应用程序池,而不是为您的应用程序创建的应用程序池。确保您的App Pool使用“ApplicationPoolIdentity”和NOT NetworkService。从根文件夹中删除NetworkService权限。你不需要它IIS具有内置身份(IIS_IUSRS)。