Hexo Abbrlink使用

  |  

Hexo-abbrlink插件使用

avatar

1.为了给Hexo博客生成简洁唯一且URL不变的链接,我使用了hexo-abbrlink插件:

1
npm install hexo-abbrlink --save

2.对Hexo根目录下_config.yml进行修改:

1
2
3
4
5
6
7
8
9
10
11
12
13
# URL
## Set your site url here.
url: https://www.seyou.life
# permalink: :year/:month/:day/:title/
permalink: posts/:year/:month/:abbrlink.html # 也可以直接写 posts/:abbrlink.html
# abbrlink config
abbrlink:
alg: crc32 #support crc16(default) and crc32
rep: hex #support dec(default) and hex
permalink_defaults:
pretty_urls:
trailing_index: true # Set to false to remove trailing 'index.html' from permalinks
trailing_html: true # Set to false to remove trailing '.html' from permalinks

3.最后一定要执行:

1
hexo clean

4.一些问题:

  • 问题:查看Xftp文章文件夹存在undefined,文件也变成undefind.html
  • 解决办法:执行hexo clean
  • 问题:Nginx502 Bad gateway
  • 解决办法:hexo server
本文作者: Seyou
发布时间: 2024-03-21
最后更新: 2024-03-23
本文标题: Hexo Abbrlink使用
本文链接: https://seyou.lol/posts/2024/03/c6b1b407.html
版权声明: 本作品采用 CC BY-NC-ND 4.0 许可协议进行许可。转载请注明出处!