Hexo 生成博客文章的链接时,默认格式
permalink: :year/:month/:day/:title/
,即按照 年:月:日:标题的格式来生成的。如果标题中含中文的话,复制URL链接的话中文字符就会是一大串编码字符。如果想为每一篇文章生成唯一 ID 的话,推荐使用 hexo-abbrlink 或 hexo-uuid
hexo-abbrlink
博客根目录下安装
npm install hexo-abbrlink --save
config.yml
中修改
permalink: posts/:abbrlink/
hexo clean -> hexo g -> hexo s
在本地查看,博客文章链接如 https://dulily.gitee.io/posts/28872/
hexo-abbrlink
官方文档中还介绍了其他配置,可以自行修改哦
hexo-uuid
博客根目录下安装
npm install hexo-uuid --save
config.yml
中修改
permalink: posts/:uuid/
hexo clean -> hexo g -> hexo s
在本地查看,博客文章链接如 https://dulily.gitee.io/posts/22836fb7-5935-11eb-ba6a-a5e2f242e8b2
hexo-uuid
官方文档中还介绍了其他配置,可以自行修改哦
两种方式随便选择一种都行