hexo链接唯一化解决中文标题链接过长问题
安装hexo的插件abbrlink
- 首先安装
npm install hexo-abbrlink --save
- 然后再你的hexo的站点配置文件_config.yml中查找并修改修改
permalink: posts/:abbrlink/
这里的posts/
是可以替换的,标题中的/
最好不要超过两个,这样会影响搜索引擎的爬虫抓取你的网站
- 在站点配置文件_config.yml添加abblink配置
abbrlink:
alg: crc32 # 算法:crc16(default) and crc32
rep: hex # 进制:dec(default) and hex