0%

Hexo短地址

每次从博客分享文章给别人都很苦恼,Hexo 默认生成的链接太长了,而且一旦文章名字改变,链接也跟着改变。有没有什么方法让地址尽量短小精悍,同时永久化呢?

感谢 rozbo/hexo-abbrlink,完美解决此痛点。

安装

在博客主目录下执行

1
npm install hexo-abbrlink --save

配置

_config.yml 配置文件写入

1
2
3
4
5
6
7
# abbrlink config
abbrlink:
alg: crc16 #support crc16(default) and crc32
rep: hex #support dec(default) and hex

# 更改 permalink 值
permalink: posts/:abbrlink.html