在 IIS7.5 上部署后 MVC3 路由不起作用

发布于 2024-11-05 07:25:16 字数 177 浏览 0 评论 0原文

在VS2010中创建Web应用程序项目后,添加路由并在调试模式下运行,路由似乎工作正常,我没有问题。

但是当我尝试将其部署在本地计算机上的 IIS7.5 上,并尝试单击使用路由的链接时,它会抛出: “HTTP 错误 404.0 - 未找到 您要查找的资源已被删除、更名或暂时不可用。”

有人遇到同样的问题吗?

After creating a Web Application project in VS2010, adding a routing route and run in debug mode the routing seems to work properly and I have no problem.

But when I tried to deploy it on IIS7.5 on my local machine, and tried to click a link that uses routing it throws:
"HTTP Error 404.0 - Not Found
The resource you are looking for has been removed, had its name changed, or is temporarily unavailable."

Does anyone encountered the same issue?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

汐鸠 2024-11-12 07:25:16

听起来您缺少 UrlRouting 模块。

  1. 转到 IIS 中的站点
  2. 单击模块
  3. 查找类型为 System.Web.Routing.UrlRoutingModule 的模块(在我的 IIS 中,名称为 UrlRoutingModule-4.0)
  4. 如果找不到它,请单击“添加托管模块”并粘贴最后一步的信息。另请选中复选框。

我希望这有帮助。如果这不是问题,请检查您是否在集成模式下运行(查看该应用程序的应用程序池)。

Sounds like you are missing the module for UrlRouting.

  1. Go to the site in IIS
  2. Click on Modules
  3. Look for an module of type: System.Web.Routing.UrlRoutingModule(in my IIS the name is UrlRoutingModule-4.0)
  4. If you can't find it click "Add Managed Module" and paste the information in last step. Also check the checkbox.

I hope that helps. If that isn't the problem check if you are running under Integrated mode(Look at the App pool for that application).

烂人 2024-11-12 07:25:16

我能够解决这个问题并记录我是如何做到的:

http://czetsuya-tech.blogspot.com/2011/06/how-to-deploy-mvc3-powered-website-to.html

I was able to resolved this issue and document on how I did it here:

http://czetsuya-tech.blogspot.com/2011/06/how-to-deploy-mvc3-powered-website-to.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文