前言

HEXO默认使用的文章永久链接格式是

1
year/:month/:day/:title/

如果文章title很长那么这个文章链接就会很长,而且如果修改文章或者修改文章标题,链接就会立马失效

安装插件

为解决上述问题,可以安装以下插件,在网站根目录即BLOG下右键Git Bash Here,输入指令:

1
npm install hexo-abbrlink --save

修改配置

安装完成后,打开网站根目录即BLOG下的配置文件_config.yml,修改以下配置:

1
2
3
4
5
6
#permalink: :year/:month/:day/:title/
#permalink_defaults:
permalink: posts/:abbrlink/
abbrlink:
alg: crc32 #support crc16(default) and crc32
rep: dec #support dec(default) and hex

修改完成后,记得git push到远程仓库即可