中文链接转拼音
如果你的文章名称是中文的,那么 Hexo 默认生成的永久链接也会有中文,这样不利于 SEO。我们可以用 hexo-permalink-pinyin Hexo 插件使在生成文章时生成中文拼音的永久链接。
配置
1. 安装
安装命令如下:
- npm
- Yarn
- pnpm
npm i hexo-permalink-pinyin --save
yarn add hexo-permalink-pinyin
pnpm add hexo-permalink-pinyin
2. 修改配置
在 Hexo 根目录下的 _config.yml
文件中,新增以下的配置项:
_config.yml
permalink_pinyin:
enable: true # 启用插件
separator: '-' # 分词符,将使用此符号分隔两个汉字间的拼音
提示
注:除了此插件外,hexo-abbrlink 插件也可以生成非中文的链接。你可前往其项目地址详细了解。