我被困在以下问题是一个新的雨果。我想将URL
重定向到绝对URL,而不是relative url
。这就是我的意思。在_index。md文件
# Display name
title: mohit kumar
url: ranveeriit.github.io/
假设base URL为https://eample.com
。因此,hugo将我重定向到https://example.com/ranveeriit.github.io/
,当我单击mohit kumar
下的https://chandu8542.github.io/
与团队见面时,我希望hugo将我重定向到ranveeriit.github.io/
。我用的是hugo wowchemistry学术主题。
您必须编辑主题的/layouts/
文件以添加对您的特定用例的支持。
-
它可能在
index.html
或list.html
或其他文件中,这取决于你的主题如何拆分他们的代码。 -
查找
<a href="">
部分。它更像是<a href="{{ .Permalink }}">
或<a href="{{ .RelPermalink}}">
。 -
把它改成:
<a href="{{ with .Params.link }}{{ . }}{{ else }}{{ .Permalink }}{{ end }}">
. -
然后在
.md
文件中,添加link
frontmatter参数。它看起来应该像这样:
---
link: https://example.com
---