IIS 6.0 中根目录下的 ASP.NET URL 路由

发布于 2024-08-12 20:48:10 字数 458 浏览 5 评论 0原文

在运行 IIS 6.0 的 ASP.NET Web 应用程序上启用了路由。

我使用RouteTable.Routes.MapPageRoute("Simple", "{testvalue}", "~/Test.aspx"); 在 Global.aspx.cs 中,

当我使用 http://www.MyDomain.com/Hello,但是当我使用 http://subdomain.mydomain.com 而不是加载配置的默认页面(默认.aspx),当我们使用表单身份验证时,它会尝试路由请求并发送到 login.aspx 页面。

关于如何在根目录启用路由有什么建议吗?

I enabled a routing on ASP.NET web application running IIS 6.0 using

RouteTable.Routes.MapPageRoute("Simple", "{testvalue}", "~/Test.aspx"); in Global.aspx.cs

This works fine when I use http://www.MyDomain.com/Hello, however when I use http://subdomain.mydomain.com instead of loading the configured default page (default.aspx), it tries to route the request and sending to login.aspx page as we use Forms Authentication.

Any suggestions on how to enable routing at root directory?.

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

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

发布评论

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

评论(1

是你 2024-08-19 20:48:10

如果您的应用程序的根目录中有 Default.aspx。因此,将 RouteTable.Routes.RouteExistingFiles 设置为 false。

If you have Default.aspx on the root of your application. Thus, Set the RouteTable.Routes.RouteExistingFiles to false.

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