IIS 6.0 中根目录下的 ASP.NET URL 路由
在运行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的应用程序的根目录中有
Default.aspx
。因此,将RouteTable.Routes.RouteExistingFiles
设置为 false。If you have
Default.aspx
on the root of your application. Thus, Set theRouteTable.Routes.RouteExistingFiles
to false.