hexo中文标题打不开博客
hexo 中文博客打不开问题
Hexo默认的链接是http://betterming.github.io/2019/02/06/HelloWorld 类型的,在站点目录下的配置_config.yml里的配置:permalink: :year/:month/:day/:title/。这种配置的缺点就是一般文件名是中文,导致url链接里有中文出现,这会造成中文博客可能打不开,也不利于seo。这里提供一种解决方案。
step1:安装hexo-abbrlink这个插件
npm install hexo-abbrlink --save
step2:修改站点配置文件_config.yml
permalink: post/:abbrlink.html
# abbrlink config
abbrlink:
alg: crc32 # 算法:crc16(default) and crc32
rep: hex # 进制:dec(default) and hex
参考链接