AlanDecode / Maverick

🏄‍ A static blog generator built with Python.
https://alandecode.github.io/Maverick/
MIT License
453 stars 107 forks source link

sitemap.xml生成url路径问题 #30

Closed kaygb closed 3 years ago

kaygb commented 3 years ago

您好,生成的sitemap文件内URL只包含页面路径不包含域名,不被google serach console识别

image

目前的生成格式如下:

<url>
<loc>/Maverick/about/</loc>  # 这里没有包含域名
<lastmod>2017-06-28</lastmod>
<changefreq>always</changefreq>
<priority>0.8</priority>
</url>

可能需要的格式为:

<url>
<loc>https://alandecode.github.io/Maverick/about/</loc>  # 这里包含了域名
<lastmod>2017-06-28</lastmod>
<changefreq>always</changefreq>
<priority>0.8</priority>
</url>

感谢您的辛苦付出,祝安好!

AlanDecode commented 3 years ago

若需要在 sitemap 中包含域名,请在配置文件中设置 site_prefix 选项,例如:

site_prefix = "https://domain.com/"
kaygb commented 3 years ago

若需要在 sitemap 中包含域名,请在配置文件中设置 site_prefix 选项,例如:

site_prefix = "https://domain.com/"

好的,感谢作者大大