Jekyll多个永久链接支持

时间:2014-10-15 14:38:14

标签: jekyll permalinks github-pages

Jekyll是否支持设置多个永久链接?

例如,我目前在_config.yml中有以下内容:

permalink: /:categories/:title/

我想拥有的是以下内容:

permalink: - /:categories/:title/ - /:year/:month/:day/:title/

我尝试实现的目标是单个帖子会有多个网址。我很清楚我可以使用" redirect_from"插件(我在GitHub页面中托管),但这需要我手动更新我的所有帖子以在YAML中包含redirect_from

1 个答案:

答案 0 :(得分:0)

你找到了jekyll-archives吗? https://github.com/jekyll/jekyll-archives

您可以创建其他永久链接,例如

permalinks:
  year: '/:year/'
  month: '/:year/:month/'
  day: '/:year/:month/:day/'
  tag: '/tag/:name/'
  category: '/category/:name/'

我认为你不能使用:标题。它是一个列出帖子的索引页面。