如何在共享托管服务器上部署Mvc应用程序?
我 HELM 控制面板上的我的网站。我在 MVC 上开发了我的网站。但是我的托管提供商在该托管帐户框架 3.5 和 IIS6 上安装了以下组件。但我无法运行我的网站,它显示页面未找到错误。
I My Web site on a HELM Control Panel. I developed my web site on MVC.But My Hosting Provider having a Following components installed on That Hosting Account framework 3.5 and IIS6. But I am Unable to Run My site it display me Page not found error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是您在 IIS6 下运行,如果它在共享主机上,您不太可能有足够的控制权来使 MVC 运行而不需要“作弊”一点。
在 IIS6 下,如果请求具有正确的扩展名(.aspx、.asmx、.ashx 等)和良好的 MVC URL,则只会路由到 ASP.NET 处理程序(我不保证术语正确),没有扩展名根本不会被 ASP.NET 看到,因此请求不会到达 MVC 应用程序中的路由,因此您会遇到找不到页面的情况。
在 IIS7 下,一切都通过 ASP.NET 处理程序,因此它可以正常工作。
因此,有几个链接可以提供帮助,这是一个 stackoverflow 问题:
IIS6 上的 ASP.NET MVC
,Phil Haack 介绍了该主题:
http://haacked. com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx
希望这会有所帮助。
http://haacked. com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx
The problem will be that you're running under IIS6 and if its on shared hosting you're unlikely to have sufficient control to make MVC run without "cheating" a bit.
Under IIS6 requests are only routed to the ASP.NET handlers (I don't promise to get the terminology right) if they have the right extension (.aspx, .asmx, .ashx, etc) with a nice MVC URL there's no extension at all so it doesn't get see by ASP.NET and hence the request won't hit the routing within your MVC app and so you get page not found.
Under IIS7 everything (ish) goes through the ASP.NET handler and so it just works.
So a couple of links to help, here's a stackoverflow question:
ASP.NET MVC on IIS6
and here's Phil Haack on the subject:
http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx
Hope this helps.
http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx