gpt4 book ai didi

c# - 为什么 MapPageRoute/RedirectToRoute 在开发机器上工作而不在生产服务器上工作?

转载 作者:行者123 更新时间:2023-11-30 22:17:37 26 4
gpt4 key购买 nike

我有一个常规的 webforms 项目(非 MVC),我成功地实现了 MapPageRoute 和 RedirectToRoute 场景。页面路由是通过数据库查找完成的,因为我正在翻译查询字符串(例如?filter=112 到/my-friendly-url)。它在我运行 VWD 2010 Express 和随附的 ASP.NET 开发服务器的开发机器上运行良好。 ASP.NET 版本为 4.0.30319.272。但是,当我在生产 (iis7) 框中运行该项目时,我在映射页面上收到页面未找到错误。网站/页面的其余部分运行良好。我的直觉是页面处理是问题的根源,但我不知道它是什么或为什么。这可能与 iis7 如何处理目录与文件名以及我的程序将物理 .aspx 路由到目录样式名称可能产生的干扰有关。我的 iis7 和 web.config 知识在这方面有点薄弱。

这里是我的 global.asax 的摘录:

   void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup
RegisterRoutes(RouteTable.Routes);
}

public static void RegisterRoutes(RouteCollection routes)
{
routes.Clear();
routes.RouteExistingFiles = false;
routes.Ignore("{resource}.axd/{*pathInfo}"); //ignore axd files, prevents javascript/routing collisions
routes.MapPageRoute("Education", "{category}/{section}", "~/product/education/default.aspx");
routes.MapPageRoute("EducationLanding", "{category}", "~/product/education/default.aspx");
}

Web.config:

的处理程序部分
 <handlers>
<remove name="StaticFile" />
<remove name="PageHandlerFactory-Integrated-4.0" />
<add verb="*" path="ajax/*.ashx" name="Ajax" type="Ajax.PageHandlerFactory, Ajax" />
<add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
<add name="PageHandlerFactory-Integrated-4.0" path="*.aspx" verb="GET,HEAD,POST,DEBUG" type="System.Web.UI.PageHandlerFactory" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode,runtimeVersionv4.0" />
<add name="StaticFile" path="*" verb="*" modules="StaticFileModule,DefaultDocumentModule,DirectoryListingModule" resourceType="Either" requireAccess="Read" />
</handlers>

提前致谢,约翰

最佳答案

查看页面处理将我带到了 web.config 的模块部分,我在 SO ( IIS 7 ignores MapPageRoute without file extentions) 上找到了我的答案。我不知道为什么在我以前的所有搜索中都没有找到这个。看:

<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>

谢谢@Christoph

关于c# - 为什么 MapPageRoute/RedirectToRoute 在开发机器上工作而不在生产服务器上工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16660366/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com