C# 将站点地图从 ashx 更改为 xml

发布于 2024-10-20 17:32:37 字数 675 浏览 3 评论 0原文

我的站点地图位于: http://localhost/scirranew/sitemap.ashx

<%@ WebHandler Language="C#" Class="SiteMap" %>

using System;
using System.Web;

public class SiteMap : IHttpHandler {

    public void ProcessRequest (HttpContext context) {
        context.Response.ContentType = "text/xml";
    }

    public bool IsReusable {
        get {
            return false;
        }
    }

}

据我所知,谷歌就可以了。但我希望它是 .xml 文件类型,以保证整个网站的一致性。

我尝试重写 URL:

<rewrite url="^~/Sitemap.xml" to="~/SiteMap.ashx" processing="stop"/>

但这不适用于 .xml 扩展名。

My sitemap is at: http://localhost/scirranew/sitemap.ashx

<%@ WebHandler Language="C#" Class="SiteMap" %>

using System;
using System.Web;

public class SiteMap : IHttpHandler {

    public void ProcessRequest (HttpContext context) {
        context.Response.ContentType = "text/xml";
    }

    public bool IsReusable {
        get {
            return false;
        }
    }

}

As far as I know, google will be OK with this. But I would like it to be a .xml filetype for consistency throughout my site.

I've tried rewriting the URL:

<rewrite url="^~/Sitemap.xml" to="~/SiteMap.ashx" processing="stop"/>

But this doesn't work with the .xml extension.

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

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

发布评论

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

评论(1

携君以终年 2024-10-27 17:32:37

无需使用 ashx 文件,只需将代码放入程序集中并 使用您喜欢的任何扩展名在 web.config 中注册处理程序:

<configuration>
  <system.web>
    <httpHandlers>
      <add verb="*" path="Sitemap.xml" 
        type="SiteMap, AssemblyContainingClass" />
    </httpHandlers>
  </system.web>
</configuration>

Instead of using an ashx file, just put the code in an assembly and register the handler in web.config with any extension you like:

<configuration>
  <system.web>
    <httpHandlers>
      <add verb="*" path="Sitemap.xml" 
        type="SiteMap, AssemblyContainingClass" />
    </httpHandlers>
  </system.web>
</configuration>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文