39af43ef1 Update postprocess.md 3ec192d08 Update multilingual.md 7fc7bf862 Add a note about some changes in 0.112.0 742510ae8 Fix ordinal abbrev example fe557031a Correct spelling for 'GitHub' and 'GitLab' (#2082) 84a059b9a Fix typo in hosting-on-azure.md (#2080) 3383786fe Add i18n to list of directories affected by ignoreFiles 5bfb95234 Update 404.md (#2076) 87545a4fd Update hosting-on-cloudflare-pages.md (#2078) aa5952c28 Add default module mount to example (#2075) ced5292c8 Align permalinks examples (#2073) 77b5009fd Fix typo c79319a6a Clarify description of baseURL e93a9807b Fix typo in frontmatter description (#2071) 05fe9163a Remove erroneous statement aa59ef383 docs: Remove note about hugo server not using 404 (#2068) 4a387a6b8 Clarify findRESubmatch (#2065) 47a9181b5 Clarify findRE, replaceRE, and findRESubmatch (#2064) e5eedbb5e Update theme 5d392c3d4 Clarify pageRef menu property (#2059) a557b0ebf Fix typos on Configure Hugo page (#2058) 17ef283e6 Clarify module.replacements wording (#2052) 5db4aa421 Fixing broken links (#2057) 9afa0c2fa Fix broken links (#2055) 49b981b1f Correct repo URL for migration tool (contentful.com) (#2056) 969c24c16 Remove duplicate content 0b91e7676 Revert "Delete duplicate content" 3229e79f2 Delete duplicate content ec4eddb98 Fix typo 6509159d5 Describe snap package strict confinement (#2050) 1589bcdb7 Remove hugo.Generator admonition (#2048) 7e553d11b Add example 48bec0335 Replace blockquotes with admonitions where appropriate (#2043) 98226fe61 Remove orphaned param fron admonition calls (#2042) 2a37a1d21 Clarify cast functions (#2041) 03fd1d404 Fix typo 1898013ef Fix typos 944e27430 Replace output shortcode calls 0c66fb055 Add example of shortcode calls within sample code f25a79c69 Replace tip and warning shortcode calls 3afac22fc Refactor code shortcode ad65d2931 Clarify seq function 59f8a1f48 Clarify title function 47535dc87 Cleanup hasPrefix hasSuffix 7bee3e4c1 Cleanup action delimiters cc96070f0 Correct functions archetype ffe5d39b9 Remove duplicate shortcodes 075c9f3fe Remove old todos bc3ec033c Front matter cleanup (#2039) 928b94505 Add code fence types (#2038) 856fa293c Document .File.Filename (#2037) 0988c4a42 Update output-formats.md (#2036) 289da5658 Change findRe to findRE 1e50f0583 Update theme f90fb1bf5 Improve type formatting (#2032) 7785fa7d9 Use code-toggle shortcode where appropriate f11cabf37 Add space after and before action delimiters ac333c795 Replace erroneous use of nocopy shortcode param 064896c06 Use bool param when calling code-toggle fb33bf59b Update code-toggle shortcode 6ddeab4f8 Add missing go-html-template code fence type (#2030) 1bba4cefb Fix links (#2029) 77f4d6c32 Link destination cleanup (#2028) fc0ecc027 Improve breadcrumb example (#2026) 6148be2de Update the breadcrumb navigation example (#2025) 6ebb37b1b Clarify sort function (#2024) 31269bad9 Add Winget installation method (#1988) d6c5f940e Resource methods: add signatures, minor improvements (#2017) d2e594cbc Modify inner variable shortcode-template explanation (#1985) a54927a7f Update GitHub Pages starter workflow (#2023) 2964c2d44 Remove orphaned static files (#2022) 97e5567cc Complete documentation on '.Scratch' and '.Store' (#2016) fa7b2e299 Fix typo bdce77c57 Remove literal from example menu template c0f23b216 Correct and improve menu documentation (#2010) 464368fd9 Document .Page.Store (#2011) a3d7c4a3a Improve urls.Parse function (#2012) d2cec3776 Clarify postcss config option (#2013) eb3003fef Fixed typo (#2007) 90c82d7ea Clarify mermaid markdown example (#2004) 1b11dcd5c docs(Diagrams): Update mermaid import mechanism (#1967) 4aceb6855 Fingerprinting, asset management: minor improvements (#2003) bcbc519bb resources.GetRemote: minor improvement (#2002) d54185bef Clarify markdownify behavior (#1999) afb582a80 Clarify usage of slug in front matter (#1998) f71985315 Update hasSuffix.md 29ad622a3 netlify: Hugo 0.111.3 adf223ecc Merge branch 'tempv0.111.3' 06858c646 docs: Improve examples of variadic math functions 8b656994e tpl/math: Allow multi numbers in add, sub, mul, div, min and max 2a38c4046 tpl: Add hasSuffix alias 4e0b98d54 switch transfers to workers 11651ac0f customize parallel transfer count 142f5da81 Update GitHub hosting instructions (#1991) ad7901d2f netlify: Hugo 0.111.2 0651a76e0 add headings to distinguish render hook context params d96d75be4 netlify: Hugo 0.111.1 226cb9e3a Add a paragraph about the new page template function 4c0157a49 Add .Fragments docs 6c78c0679 netlify: Bump to Hugo 0.111.0 7b11c24cf Merge branch 'feat/related-fragments' 615d18ef8 Add Related fragments config a36449b0c cods: Regen docs helper 0272fa45f Merge commit '336622d5e7afd9334cd2de7150d4f16bdf7c24f9' c5a962b93 related: Add config option cardinalityThreshold f91677377 docs: Another fix related docs example 17aa939ea docs: Fix related docs example 12c449150 Merge commit 'cf591b7c0c598d34896709db6d28598da37e3ff6' cb998b3d6 Add page fragments support to Related git-subtree-dir: docs git-subtree-split: 39af43ef11c23b8eaea7e17b59ff065a169305ac
10 KiB
title | description | categories | keywords | menu | toc | weight | aliases | |||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
URL Management | Control the structure and appearance of URLs through front matter entries and settings in your site configuration. |
|
|
|
true | 180 |
|
Overview
By default, when Hugo renders a page, the resulting URL matches the file path within the content
directory. For example:
content/posts/post-1.md → https://example.org/posts/post-1/
You can change the structure and appearance of URLs with front matter values and site configuration options.
Front matter
slug
Set the slug
in front matter to override the last segment of the path. The slug
value does not affect section pages.
{{< code-toggle file="content/posts/post-1.md" copy=false fm=true >}} title = 'My First Post' slug = 'my-first-post' {{< /code-toggle >}}
The resulting URL will be:
https://example.org/posts/my-first-post/
url
Set the url
in front matter to override the entire path. Use this with either regular pages or section pages.
With this front matter:
{{< code-toggle file="content/posts/post-1.md" copy=false fm=true >}} title = 'My First Article' url = '/articles/my-first-article' {{< /code-toggle >}}
The resulting URL will be:
https://example.org/articles/my-first-article/
If you include a file extension:
{{< code-toggle file="content/posts/post-1.md" copy=false fm=true >}} title = 'My First Article' url = '/articles/my-first-article.html' {{< /code-toggle >}}
The resulting URL will be:
https://example.org/articles/my-first-article.html
In a monolingual site, a url
value with or without a leading slash is relative to the baseURL
.
In a multilingual site:
- A
url
value with a leading slash is relative to thebaseURL
. - A
url
value without a leading slash is relative to thebaseURL
plus the language prefix.
Site type | Front matter url |
Resulting URL |
---|---|---|
monolingual | /about |
https://example.org/about/ |
monolingual | about |
https://example.org/about/ |
multilingual | /about |
https://example.org/about/ |
multilingual | about |
https://example.org/de/about/ |
If you set both slug
and url
in front matter, the url
value takes precedence.
Site configuration
Permalinks
In your site configuration, set a URL pattern for regular pages within a top-level section. This is recursive, affecting descendant regular pages.
{{% note %}}
The permalinks
defined in your site configuration do not apply to section pages. To adjust the URL for section pages, set url
in front matter.
{{% /note %}}
Examples
With this content structure:
content/
├── posts/
│ ├── _index.md
│ ├── post-1.md
│ └── post-2.md
└── _index.md
Create a date-based hierarchy, recursively, for regular pages within the posts
section:
{{< code-toggle file="config" copy=false >}} [permalinks] posts = '/posts/:year/:month/:title/' {{< /code-toggle >}}
The structure of the published site will be:
public/
├── posts/
│ ├── 2023/
│ │ └── 03/
│ │ ├── post-1/
│ │ │ └── index.html
│ │ └── post-2/
│ │ └── index.html
│ └── index.html
├── favicon.ico
└── index.html
To create a date-based hierarchy for regular pages in the content root:
{{< code-toggle file="config" copy=false >}} [permalinks] '/' = '/:year/:month/:title/' {{< /code-toggle >}}
{{% note %}} A URL pattern defined for the content root is not recursive. {{% /note %}}
Use the same approach with taxonomies. For example, to omit the taxonomy segment of the URL:
{{< code-toggle file="config" copy=false >}} [permalinks] 'tags' = '/:title/' {{< /code-toggle >}}
Front matter url
values take precedence over URL patterns defined in permalinks
.
Tokens
Use these tokens when defining the URL pattern. The date
field in front matter determines the value of time-related tokens.
:year
- the 4-digit year
:month
- the 2-digit month
:monthname
- the name of the month
:day
- the 2-digit day
:weekday
- the 1-digit day of the week (Sunday = 0)
:weekdayname
- the name of the day of the week
:yearday
- the 1- to 3-digit day of the year
:section
- the content's section
:sections
- the content's sections hierarchy. You can use a selection of the sections using slice syntax:
:sections[1:]
includes all but the first,:sections[:last]
includes all but the last,:sections[last]
includes only the last,:sections[1:2]
includes section 2 and 3. Note that this slice access will not throw any out-of-bounds errors, so you don't have to be exact. :title
- the content's title
:slug
- the content's slug (or title if no slug is provided in the front matter)
:slugorfilename
- the content's slug (or filename if no slug is provided in the front matter)
:filename
- the content's filename (without extension)
For time-related values, you can also use the layout string components defined in Go's time package. For example:
{{< code-toggle file="config" copy=false >}} permalinks: posts: /:06/:1/:2/:title/ {{< /code-toggle >}}
Appearance
The appearance of a URL is either ugly or pretty.
Type | Path | URL |
---|---|---|
ugly | content/about.md | https://example.org/about.html |
pretty | content/about.md | https://example.org/about/ |
By default, Hugo produces pretty URLs. To generate ugly URLs, change your site configuration:
{{< code-toggle file="config" copy=false >}} uglyURLs = true {{< /code-toggle >}}
Post-processing
Hugo provides two mutually exclusive configuration options to alter URLs after it renders a page.
Canonical URLs
{{% note %}} This is a legacy configuration option, superseded by template functions and markdown render hooks, and will likely be removed in a future release.
{{% /note %}}
If enabled, Hugo performs a search and replace after it renders the page. It searches for site-relative URLs (those with a leading slash) associated with action
, href
, src
, srcset
, and url
attributes. It then prepends the baseURL
to create absolute URLs.
<a href="/about"> → <a href="https://example.org/about/">
<img src="/a.gif"> → <img src="https://example.org/a.gif">
This is an imperfect, brute force approach that can affect content as well as HTML attributes. As noted above, this is a legacy configuration option that will likely be removed in a future release.
To enable:
{{< code-toggle file="config" copy=false >}} canonifyURLs = true {{< /code-toggle >}}
Relative URLs
{{% note %}} Do not enable this option unless you are creating a serverless site, navigable via the file system. {{% /note %}}
If enabled, Hugo performs a search and replace after it renders the page. It searches for site-relative URLs (those with a leading slash) associated with action
, href
, src
, srcset
, and url
attributes. It then transforms the URL to be relative to the current page.
For example, when rendering content/posts/post-1
:
<a href="/about"> → <a href="../../about">
<img src="/a.gif"> → <img src="../../a.gif">
This is an imperfect, brute force approach that can affect content as well as HTML attributes. As noted above, do not enable this option unless you are creating a serverless site.
To enable:
{{< code-toggle file="config" copy=false >}} relativeURLs = true {{< /code-toggle >}}
Aliases
Create redirects from old URLs to new URLs with aliases:
- An alias with a leading slash is relative to the
baseURL
- An alias without a leading slash is relative to the current directory
Examples
Change the file name of an existing page, and create an alias from the previous URL to the new URL:
{{< code-toggle file="content/posts/new-file-name.md" copy=false >}} aliases = ['/posts/previous-file-name'] {{< /code-toggle >}}
Each of these directory-relative aliases is equivalent to the site-relative alias above:
previous-file-name
./previous-file-name
../posts/previous-file-name
You can create more than one alias to the current page:
{{< code-toggle file="content/posts/new-file-name.md" copy=false >}} aliases = ['previous-file-name','original-file-name'] {{< /code-toggle >}}
In a multilingual site, use a directory-relative alias, or include the language prefix with a site-relative alias:
{{< code-toggle file="content/posts/new-file-name.de.md" copy=false >}} aliases = ['/de/posts/previous-file-name'] {{< /code-toggle >}}
How Aliases Work
Using the first example above, Hugo generates the following site structure:
public/
├── posts/
│ ├── new-file-name/
│ │ └── index.html
│ ├── previous-file-name/
│ │ └── index.html
│ └── index.html
└── index.html
The alias from the previous URL to the new URL is a client-side redirect:
{{< code file="posts/previous-file-name/index.html" copy=false >}}
<html lang="en-us"> <head> </head> </html> {{< /code >}}Collectively, the elements in the head
section:
- Tell search engines that the new URL is canonical
- Tell search engines not to index the previous URL
- Tell the browser to redirect to the new URL
Hugo renders alias files before rendering pages. A new page with the previous file name will overwrite the alias, as expected.
Customize
Create a new template (layouts/alias.html
) to customize the content of the alias files. The template receives the following context:
Permalink
- the link to the page being aliased
Page
- the Page data for the page being aliased