Hugo网站前事中的绝对URL _index.md文件

发布于 2025-01-28 06:24:27 字数 450 浏览 2 评论 0原文

我遇到以下问题是雨果的新问题。我想将url重定向到绝对URL,而不是相对URL。这是我的意思。 在_index.md文件中,

# Display name
title: mohit kumar
url: ranveeriit.github.io/

假设基本URL为https://eample.com。因此,Hugo将我重定向到https://example.com/ranveeriit.github.io/我想让雨果重定向到ranveeriit.github.io/单击Mohit Kumarhttps://chandu8542.github.io/下与团队见面。我正在使用Hugo Wowchemy学术主题。

I'm stuck at the following issue being a new in Hugo. I want to redirect URL to a absolute URL rather than relative url. Here is what I means.
In _index.md file

# Display name
title: mohit kumar
url: ranveeriit.github.io/

Assume base URL is https://eample.com. As such, hugo redirects me to https://example.com/ranveeriit.github.io/ what I want hugo to redirect to ranveeriit.github.io/ when I click the mohit kumar under meet the team at https://chandu8542.github.io/. I'm using hugo wowchemy academic theme.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

七秒鱼° 2025-02-04 06:24:27

您必须编辑主题的/layouts/文件才能为您的特定用例添加支持。

  1. 它可以在index.html> list.html 或其他一些文件中,具体取决于您的主题如何拆分其代码。

  2. 寻找< a href =“”>零件。它看起来更有可能看起来像< a href =“ {{.permalink}}”>< a href =“ {.relpermalink}}}”>> 。

  3. 将其更改为:< a href =“ {{with .params.link}}}} {{。}} {{else}} {{else}} {{.permalink}}} {.permalink}}} { ;

  4. 然后在您的.md文件中,添加链接 frontMatter param。它看起来应该与此相似:

---
link: https://example.com
---

You have to edit your theme's /layouts/ files to add support to your particular use-case.

  1. It may be in index.html or list.html or some other file, depending on how your theme split up their code.

  2. Look for the <a href=""> part. It more likely looks like <a href="{{ .Permalink }}"> or <a href="{{ .RelPermalink}}">.

  3. Change it to something like: <a href="{{ with .Params.link }}{{ . }}{{ else }}{{ .Permalink }}{{ end }}">.

  4. Then in your .md file, add the link frontmatter param. It should look similar to this:

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