如何使所有帖子都有自定义格式“domain.com/blog/title”的永久链接?

发布于 2024-10-21 19:31:35 字数 333 浏览 10 评论 0原文

我想做的就是让我的所有帖子都采用以下格式: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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

本宫微胖 2024-10-28 19:31:35

您应该将永久链接设置移动到 _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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文