Hexo博客URL持久化、优化

前言

为什么要优化URL?

  1. 对搜索引擎比较友好
  2. URL缩短
    Hexo博客URL持久化、优化_第1张图片

方式一

URL优化前:
image.png

URL优化后:
image.png

弊端:上方的文章标题是hello-world,是没多大区别,如果文章标题含有中文
image.png

方式二(推荐)

安装 hexo-abbrlink 插件:

npm install hexo-abbrlink --save

C:\Hexo-Blog\_config.yml中找到permalink注释掉,加入如下代码

#permalink: :year/:month/:day/:title/
permalink: article/:abbrlink.html
abbrlink:
  alg: crc32  # 算法:crc16(default) and crc32
  rep: hex    # 进制:dec(default) and hex

效果:
image.png

注意:因为你的文章目录结构已经改变,和之前的年月日文章路径产生冲突,所以你需要重新生成文章hexo cleanhexo g,不然会报undefined错

Lete乐特个人博客:https://blog.lete114.top/

你可能感兴趣的:(教程)