MVC3 路由、IIS6

发布于 2024-12-03 20:58:44 字数 485 浏览 3 评论 0原文

我已将 MVC3 应用程序部署到 IIS6 服务器,并更改了我的 global.asax.cs 以读取以下内容。

 routes.MapRoute(
                "Default", // Route name
                "{controller}.aspx/{action}/{id}", // URL with parameters
                new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
            );

一切正常,/home/index 重定向到 home.aspx/index ,其余页面也是如此。唯一的问题是需要授权的页面。它不是重定向到 Account.aspx/LogOn,而是重定向到 Account/LogOn。关于如何解决这个问题有什么想法吗?

I have deployed my MVC3 application to an IIS6 server and have changed my global.asax.cs to read the following.

 routes.MapRoute(
                "Default", // Route name
                "{controller}.aspx/{action}/{id}", // URL with parameters
                new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
            );

Everything works fine, /home/index redirects to home.aspx/index and so do the rest of the pages. The only problem is pages that require authorization. Instead of redirecting to Account.aspx/LogOn, it redirects to Account/LogOn. Any ideas on how to solve this?

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

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

发布评论

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

评论(1

寄人书 2024-12-10 20:58:45

在 web.config 文件的身份验证部分下,您会发现类似

<forms loginUrl="~/Account/index" slidingExpiration="true" timeout="2880" protection="All" />

将其更改为

<forms loginUrl="~/Account.aspx/index" slidingExpiration="true" timeout="2880" protection="All" />

Under authentication section in your web.config file you will find something like

<forms loginUrl="~/Account/index" slidingExpiration="true" timeout="2880" protection="All" />

change it to

<forms loginUrl="~/Account.aspx/index" slidingExpiration="true" timeout="2880" protection="All" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文