文章

自定义程度更高的sitemap生成方式,适合多个域名

自定义程度更高的sitemap生成方式,适合多个域名

我的另一篇文章 中有介绍以jekyll插件的方式建立sitemap,但那个方式只能建立单个域名的sitemap,无法自定义额外参数,也无法生成在根目录可见的xml文件。所以我在网上搜索后,发现了一个更方便的sitemap生成方式

设置url

我的网站有三个域名,我想制作每个域名所对应的网站地图,所以在_config.yml中要设置好三个url变量值,

1
2
3
url_gh: "https://ghostdavid.github.io"
url_cf: "https://ghostdavid.pages.dev"
url_top: "https://ghostdavid.top"

新建sitemap-xxx.xml

在项目根目录新建三个sitemap-xxx.xml文件,内容如下(这里以sitemap-cf.xml举例),不同sitemap文件只需更改文件名和文件中的site.url的后缀即可

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
    
---
layout: null
search: exclude
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

    <url>
        <loc>{{ site.url_cf }}</loc>
        <priority>1.0</priority>
    </url>
  
  {% for page in site.pages %}
    <url>
        <loc>{{ site.url_cf }}{{page.url}}</loc>
        <lastmod>{{site.time | date: '%Y-%m-%d' }}</lastmod>
        <changefreq>daily</changefreq>
        <priority>0.5</priority>
    </url>
    {% endfor %}

    {% for post in site.posts %}
    <url>
        <loc>{{ site.url_cf }}{{post.url}}</loc>
        <lastmod>{{site.time | date: '%Y-%m-%d' }}</lastmod>
        <changefreq>daily</changefreq>
        <priority>0.5</priority>
    </url>
    {% endfor %}
  
</urlset>

  

自定义参数

loc 代表网页的网址

lastmod 代表最后修改日期

changefreq 代表网页可能变更的频率,有效值如下:

  • always
  • hourly
  • daily
  • weekly
  • monthly
  • yearly
  • never

priority 代表此网址相对于您网站上的其他网址的优先级,有效值从 0.0 到 1.0

保存提交

等待部署完成,就能生成不同域名的sitemap地址,将地址分别提交至Bing和Google对应域名下的站点地图即可

参考资料

https://blog.poychang.net/generating-sitemap-in-jekyll-without-plugin/

https://blog.17study.com.cn/2017/12/29/sitemap_of_jekyll/

本文由作者按照 CC-BY-NC-SA 4.0 进行授权