Jekyll是否支持设置多个永久链接?
例如,我目前在_config.yml
中有以下内容:
permalink: /:categories/:title/
我想拥有的是以下内容:
permalink:
- /:categories/:title/
- /:year/:month/:day/:title/
我尝试实现的目标是单个帖子会有多个网址。我很清楚我可以使用" redirect_from"插件(我在GitHub页面中托管),但这需要我手动更新我的所有帖子以在YAML中包含redirect_from
答案 0 :(得分:0)
您可以创建其他永久链接,例如
permalinks:
year: '/:year/'
month: '/:year/:month/'
day: '/:year/:month/:day/'
tag: '/tag/:name/'
category: '/category/:name/'
我认为你不能使用:标题。它是一个列出帖子的索引页面。