IIS 6 上的 ASP.NET 路由
我根据 Mike Ormond 的示例“使用 ASP”使用 ASP.NET 路由创建了一个基本站点.NET 路由独立于 MVC”。 这在我运行内置 Web 服务器的本地计算机上运行良好。
但是,当我将其部署到我的服务器时(Windows Server 2003,IIS 6、ASP.NET 3.5 SP1)它只显示 404 错误。
我在某处读到我应该设置通配符路由。 我怎样才能做到这一点?
还需要进行哪些其他配置更改才能使其在我的服务器上运行?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以在 Steve Sanderson 的博客文章“将 ASP.NET MVC 部署到 IIS 6。"
You will find some good information on Steve Sanderson’s blog post "Deploying ASP.NET MVC to IIS 6."
在服务器上,打开 IIS:
On the server, open IIS:
您可以在 TechNet 在这里,但我喜欢 Phil Haack 的演练,您可以找到这里。 不要担心这是关于设置 ASP.NET MVC 的讨论,只需查找标题为“IIS6 无扩展 URL”的部分 - 该设置适用于 MVC 并使用经典的路由 网络表单应用程序。
You can find the "official" discussion of wildcard mappings on TechNet here but I like Phil Haack's walkthrough that you can find here. Don't worry about the fact that it's a discussion of setting up ASP.NET MVC, just look for the section titled "IIS6 Extension-less URLs" - that set up applies to both MVC and using routing with a classic web form application.
在 IIS 6 64 位下,确保 4.) 下的路径指向
C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll
Under IIS 6 64 bit, make sure that the path under 4.) points to
C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll
url重写可以帮助你解决问题。 我已经实现了允许在任何 IIS 版本上部署 MVC 应用程序的解决方案,即使使用虚拟主机也是如此。
http://www.codeproject.com/KB/aspnet/ iis-aspnet-url-rewriting.aspx
Url rewriting can help you to solve the problem. I've implemented solution allowing to deploy MVC application at any IIS version even when virtual hosting is used.
http://www.codeproject.com/KB/aspnet/iis-aspnet-url-rewriting.aspx