如何生成与站点地图协议兼容的站点地图?

发布于 2024-09-08 00:05:39 字数 353 浏览 6 评论 0原文

刚刚向 Google 网站管理员注册了我的网站,我正在尝试创建 Sitemap XML 文件。

我假设它只是一个 XML 文件,Google 将提供一个基于 Web 的生成器工具来自动生成它。但似乎他们没有,在浏览“谷歌站点地图生成器”后,没有发现任何明显的信息。

在阅读了谷歌帮助后,它推荐了一个基于“站点地图协议”的站点地图,因为这是由必应和其他搜索引擎支持的,

我正在寻找的是指向应用程序或基于网络的站点地图生成器的链接,这些应用程序或基于网络的站点地图生成器将抓取我的网站并创建 XML。

我的网站有 1000 个页面,所以我当然不想手动创建它!

非常感谢

Truegilly 的任何帮助

just signed up my site with Google Webmasters and im trying to create a Sitemap XML file.

I assumed as it is just an XML file that Google would provide a web based generator tool to generate this automatically. but it seems that they do not, and after goggling a "Google Site map generator", nothing obvious was revealed.

After reading the google help, it recommended a SiteMap based on the “sitemap protocol” as this is supported by Bing and other search engines

what I’m looking for is and links to apps or web based site map generators that will crawl my site and create the XML.

My site has 1000’s of pages so I certainly don’t want to have to create this manually!

Any help is most appreciated

Truegilly

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

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

发布评论

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

评论(3

情泪▽动烟 2024-09-15 00:05:39

http://create-site-map.com 是一个很好的资源。它将抓取您的网站并生成一个站点地图,您可以将其放在您的网站上并指向 Google。唯一需要注意的是它们有 5000 页的限制。不确定这是否足以满足您的要求。

A good resource for that would be http://create-site-map.com. It will crawl your site and generate a sitemap you can put on your site and point Google to. The only caveat is that they have a 5000 pages limit. Not sure if this is enough for your requirements.

半世蒼涼 2024-09-15 00:05:39

使用 gulp-sitemap 进行 gulp 任务

gulp.task('sitemap', function () {
    gulp.src('build/**/*.html', {
            read: false
        })
        .pipe(sitemap({
            siteUrl: 'http://www.amazon.com'
        }))
        .pipe(gulp.dest('./build'));
});

With a gulp task with gulp-sitemap

gulp.task('sitemap', function () {
    gulp.src('build/**/*.html', {
            read: false
        })
        .pipe(sitemap({
            siteUrl: 'http://www.amazon.com'
        }))
        .pipe(gulp.dest('./build'));
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文