MapRoute 不工作,URL 仍然显示找不到页面?

发布于 2024-08-04 18:11:57 字数 336 浏览 5 评论 0原文

也许我在这里很困惑,但我正在尝试访问 http://ryan.local.myappname.com/订购

其他东西,例如/Home work,我检查并找到了这个routes.MapRoute东西并添加了这个:

routes.MapRoute("Order", "Order", new { controller = "Order", action = "Index" });

但它仍然说找不到页面...这是怎么回事?

Maybe I am confused here but I am trying to go to http://ryan.local.myappname.com/Order

other things such as /Home work and I checked and found this routes.MapRoute thing and added this:

routes.MapRoute("Order", "Order", new { controller = "Order", action = "Index" });

But it still says page not found... what the dealio?

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

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

发布评论

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

评论(2

染年凉城似染瑾 2024-08-11 18:11:57

试试这个:

routes.MapRoute(
            "Order",                                              
            "{controller}/{action}",                           
            new { controller = "Order", action = "Index"}  
        );

Try this:

routes.MapRoute(
            "Order",                                              
            "{controller}/{action}",                           
            new { controller = "Order", action = "Index"}  
        );
梦开始←不甜 2024-08-11 18:11:57

您运行的是 IIS 6 吗?

如果是这样,则存在您必须手动解决的已知问题:

http://blog.codeville.net/2008/07/04/options-for-deploying-aspnet-mvc-to-iis-6/

Are you running IIS 6?

If so, it has known issues that you'll have to manually resolve:

http://blog.codeville.net/2008/07/04/options-for-deploying-aspnet-mvc-to-iis-6/

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