将 sitemap.xml http 请求传输到 ASP.NET MVC 中的路由处理程序

发布于 2024-10-16 12:42:22 字数 869 浏览 5 评论 0原文

我正在尝试添加一条路由,将所有 sitemap.xml 请求传输到我创建的自定义请求处理程序。

我尝试使用以下代码:

        routes.Add(new Route("sitemap.xml", new Helpers.SiteMapRouteHandler()));
        routes.MapRoute(
            "Default",                                              
            "{controller}/{action}/{id}",                           
            new { controller = "Home", action = "Index", id = "" }  
        );

但是当我使用 Url.Action() 创建链接时:

Url.Action("Index", new { controller = "About"})

当我尝试导航到 XML 文件时,我得到以下信息:

/sitemap.xml?action=Index&controller=About

我做错了什么?

答案:

我使用了这个解决方案:

指定 ASP.NET Http 处理程序的确切路径

I'm trying to add a route that will transfer all sitemap.xml requests to a custom request handler I made.

I tried using the following code:

        routes.Add(new Route("sitemap.xml", new Helpers.SiteMapRouteHandler()));
        routes.MapRoute(
            "Default",                                              
            "{controller}/{action}/{id}",                           
            new { controller = "Home", action = "Index", id = "" }  
        );

But when I make a link using Url.Action():

Url.Action("Index", new { controller = "About"})

I get the following when I try to navigate to the XML file:

/sitemap.xml?action=Index&controller=About

What am I doing wrong?

ANSWER:

I used this solution:

Specifying exact path for my ASP.NET Http Handler

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

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

发布评论

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

评论(3

离去的眼神 2024-10-23 12:42:22

如果您想路由到请求处理程序并执行操作,

路由

routes.MapRoute(
        "Sitemap",
        "sitemap.xml",
        new { controller = "Home", action = "SiteMap" }
        );

您可以添加如下所示的 - MVC:如何将 /sitemap.xml 路由到 ActionResult? 它对我有用

更新: 还要确保 已设置。

If you want to route to and action instead to a request handler

You could add a route like this

routes.MapRoute(
        "Sitemap",
        "sitemap.xml",
        new { controller = "Home", action = "SiteMap" }
        );

as mentioned here - MVC: How to route /sitemap.xml to an ActionResult? and it worked for me

Update: Also ensure that <modules runAllManagedModulesForAllRequests="true"> is set.

灵芸 2024-10-23 12:42:22

我不确定这是否能解决问题,但值得一试:

routes.Add(
    new Route(
        "{request}",
        new RouteValueDictionary(new { id = "" }),  // this might be the tricky part to change
        new RouteValueDictionary(new { request = "sitemap.xml" }),
        new Helpers.SiteMapRouteHandler()
    )); 

I'm not sure if this will solve the problem, but it's worth a try:

routes.Add(
    new Route(
        "{request}",
        new RouteValueDictionary(new { id = "" }),  // this might be the tricky part to change
        new RouteValueDictionary(new { request = "sitemap.xml" }),
        new Helpers.SiteMapRouteHandler()
    )); 
海拔太高太耀眼 2024-10-23 12:42:22

您必须将处理程序添加到 web.config 文件。

<add name="SitemapFileHandler" path="sitemap.xml" verb="GET" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0"/>

并配置您的路线:

routes.RouteExistingFiles = true;

在此处阅读更多信息:

You have to add a handler to web.config file.

<add name="SitemapFileHandler" path="sitemap.xml" verb="GET" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0"/>

And configure your routes:

routes.RouteExistingFiles = true;

Read more here:
http://weblogs.asp.net/jongalloway//asp-net-mvc-routing-intercepting-file-requests-like-index-html-and-what-it-teaches-about-how-routing-works

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