hexo文章url路径自定义

hexo默认url路径是 年/月/日/文章标题,这样其实不利于SEO。

通过修改配置文件_config.yml来改变hexo生成文章的路径。

1
2
3
4
5
6
# URL
url: http://wekri.com
root: /
#permalink: :year/:month/:day/:title/
permalink: :title/
permalink_defaults:

permalink原来默认是:year/:month/:day/:title/ 我这里改成:title/之后生成文章的url中就没有时间了。

还可以自定义文章路径

1
permalink: :my/

文章内容:

1
2
3
4
5
---
title: 道可道
date: 2019-03-01 18:35
my: 1cb337723bca4c5bb87814fec45c9466
---

这样文章的url就会是http://wekri.com/1cb337723bca4c5bb87814fec45c9466

参考

https://hexo.io/zh-cn/docs/permalinks


hexo文章url路径自定义
https://www.wekri.com/other/hexo-article-url-path-customization/
Author
Echo
Posted on
March 1, 2019
Licensed under