Hexo | 博客文章链接优化之abbrlink

原文作者: xingguang
原文链接:http://www.tiance.club/post/4194944743.html

前言

hexo的默认永久链接是在_config.yml里的配置permalink: :year/:month/:day/:title/。这种默认配置有个很不能接受的缺点,文件名为中文,会导致url链接里面出现中文。这次我来介绍一个比较方便好用的解决方案hexo-abbrlink插件。

安装hexo-abbrlink插件
npm install hexo-abbrlink --save

然后在 Hexo 的根目录的配置文件_config.yml 中修改:
原文作者: xingguang
原文链接:http://www.tiance.club/post/4194944743.html

站点配置文件(_config.yml)里:

permalink: post/:abbrlink.html
abbrlink:
  alg: crc32  # 算法:crc16(default) and crc32
  rep: hex    # 进制:dec(default) and hex

使用hexo g 会自动在你的文章中加上abbrlink: fbf5310d

原文作者: xingguang
原文链接:http://www.tiance.club/post/4194944743.html

原文地址:https://www.cnblogs.com/yizhidaozuihou/p/12829815.html