2 分钟阅读
https://gohugo.io/templates/sitemap-template/
Hugo提供了内置的站点地图(sitemap)模板。
Hugo的内置站点地图模板符合v0.9的站点地图协议。
对于单语言项目,Hugo将在根目录下使用内置的sitemap.xml模板生成一个sitemap.xml文件,该文件位于publishDir
中。
对于多语言项目,Hugo会生成:
publishDir
的根目录中生成一个sitemap.xml文件。 在您的站点配置中设置更改频率、优先级和生成的文件名称的默认值。
config.
=== “yaml”
``` yaml
sitemap:
changefreq: monthly
filename: sitemap.xml
priority: 0.5
```
=== “toml”
``` toml
[sitemap]
changefreq = 'monthly'
filename = 'sitemap.xml'
priority = 0.5
```
=== “json”
``` json
{
"sitemap": {
"changefreq": "monthly",
"filename": "sitemap.xml",
"priority": 0.5
}
}
```
changefreq
页面更改频率的可能性有多大。有效的值包括always
、hourly
、daily
、weekly
、monthly
、yearly
和never
。默认值为""
(从渲染的站点地图中省略更改频率)。
filename
生成的文件名称。默认值为sitemap.xml
。
priority
相对于站点中的其他页面,该页面的优先级。有效值范围为0.0到1.0。默认值为-1
(渲染站点地图时省略优先级)。
在前置元数据中覆盖给定页面的默认值。
news.md
=== “yaml”
``` yaml
---
sitemap:
changefreq: weekly
priority: 0.8
title: News
---
```
=== “toml”
``` toml
+++
title = 'News'
[sitemap]
changefreq = 'weekly'
priority = 0.8
+++
```
=== “json”
``` json
{
"sitemap": {
"changefreq": "weekly",
"priority": 0.8
},
"title": "News"
}
```
要覆盖内置的sitemap.xml模板,请在以下任一位置创建一个新文件:
在对页面集合进行排列时,可以使用.Sitemap.ChangeFreq
和.Sitemap.Priority
分别访问更改频率和优先级。
要覆盖内置的sitemapindex.xml模板,请在以下任一位置创建一个新文件:
您可以在站点配置中禁用站点地图生成:
config.
=== “yaml”
``` yaml
disableKinds:
- sitemap
```
=== “toml”
``` toml
disableKinds = ['sitemap']
```
=== “json”
``` json
{
"disableKinds": [
"sitemap"
]
}
```