如何使所有帖子都有自定义格式“domain.com/blog/title”的永久链接?
我想做的就是让我的所有帖子都采用以下格式:domain.com/blog/title。
但是,在我的 _posts
文件夹中,有一个名为 2010-07-11-hello.markdown
的文件,它包含以下内容:
---
title: Hello
permalink: /blog/:title/
---
Hello World!
我做错了什么?永久链接不会被转换。例如,URL 如下所示:http://localhost:4000/blog/:title/
我希望实际标题显示在那里。
What I'm trying to do is get all my posts to have the following format: domain.com/blog/title.
However, in my _posts
folder I have a file named 2010-07-11-hello.markdown
and it contains the following:
---
title: Hello
permalink: /blog/:title/
---
Hello World!
What am I doing wrong? The permalinks aren't being converted. For example, the URL looks like this: http://localhost:4000/blog/:title/
and I want the actual title to show up there.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该将永久链接设置移动到 _config.yml 文件中,如 http://jekyllrb.com/docs/configuration 中所述/
You should move the permalink setting into the _config.yml file as described at http://jekyllrb.com/docs/configuration/