今天,我在我的同一个网络文件夹上运行了jekyll build
,得到了与以往不同的结果。
根据我的 _config.yml 文件的指定,我希望Jekyll在每个文件中使用index.html文件构建路径:
permalink: /:categories/:year/:month/:day/:title
过去,这总是会产生如下文件:
/the-category/2015/01/01/the-title/index.html
然而,今天Jekyll没有预期的行为,而是建立了以.html文件结尾的每个永久链接路径,如:
/the-category/2015/01/01/the-title.html
出了什么问题?
答案 0 :(得分:1)
事实证明,最新版本的杰基尔解释了我的同样的事情。 _config.yml 文件的方式不同。我只需要在我的permalink
定义中添加尾部斜杠:
permalink: /:categories/:year/:month/:day/:title/
现在一切都恢复正常了。