--- title: URL Management linktitle: URL Management description: Hugo supports permalinks, aliases, link canonicalization, and multiple options for handling relative vs absolute URLs. date: 2017-02-01 publishdate: 2017-02-01 lastmod: 2017-03-09 keywords: [aliases,redirects,permalinks,urls] categories: [content management] menu: docs: parent: "content-management" weight: 110 weight: 110 #rem draft: false aliases: [/extras/permalinks/,/extras/aliases/,/extras/urls/,/doc/redirects/,/doc/alias/,/doc/aliases/] toc: true --- ## Permalinks The default Hugo target directory for your built website is `public/`. However, you can change this value by specifying a different `publishDir` in your [site configuration][config]. The directories created at build time for a section reflect the position of the content's directory within the `content` folder and namespace matching its layout within the `contentdir` hierarchy. The `permalinks` option in your [site configuration][config] allows you to adjust the directory paths (i.e., the URLs) on a per-section basis. This will change where the files are written to and will change the page's internal "canonical" location, such that template references to `.RelPermalink` will honor the adjustments made as a result of the mappings in this option. {{% note "Default Publish and Content Folders" %}} These examples use the default values for `publishDir` and `contentDir`; i.e., `public` and `content`, respectively. You can override the default values in your [site's `config` file](/getting-started/configuration/). {{% /note %}} For example, if one of your [sections][] is called `post` and you want to adjust the canonical path to be hierarchical based on the year, month, and post title, you could set up the following configurations in YAML and TOML, respectively. ### YAML Permalinks Configuration Example {{< code file="config.yml" copy="false" >}} permalinks: post: /:year/:month/:title/ {{< /code >}} ### TOML Permalinks Configuration Example {{< code file="config.toml" copy="false" >}} [permalinks] post = "/:year/:month/:title/" {{< /code >}} Only the content under `post/` will have the new URL structure. For example, the file `content/post/sample-entry.md` with `date: 2017-02-27T19:20:00-05:00` in its front matter will render to `public/2017/02/sample-entry/index.html` at build time and therefore be reachable at `https://example.com/2017/02/sample-entry/`. You can also configure permalinks of taxonomies with the same syntax, by using the plural form of the taxonomy instead of the section. You will probably only want to use the configuration values `:slug` or `:title`. ### Permalink Configuration Values The following is a list of values that can be used in a `permalink` definition in your site `config` file. All references to time are dependent on the content's date. `: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 `:title` : the content's title `:slug` : the content's slug (or title if no slug is provided in the front matter) `:filename` : the content's filename (without extension) ## Aliases For people migrating existing published content to Hugo, there's a good chance you need a mechanism to handle redirecting old URLs. Luckily, redirects can be handled easily with **aliases** in Hugo. ### Example: Aliases Let's assume you create a new piece of content at `content/posts/my-awesome-blog-post.md`. The content is a revision of your previous post at `content/posts/my-original-url.md`. You can create an `aliases` field in the front matter of your new `my-awesome-blog-post.md` where you can add previous paths. The following examples show how to create this filed in TOML and YAML front matter, respectively. #### TOML Front Matter {{< code file="content/posts/my-awesome-post.md" copy="false" >}} +++ aliases = [ "/posts/my-original-url/", "/2010/01/01/even-earlier-url.html" ] +++ {{< /code >}} #### YAML Front Matter {{< code file="content/posts/my-awesome-post.md" copy="false" >}} --- aliases: - /posts/my-original-url/ - /2010/01/01/even-earlier-url.html --- {{< /code >}} Now when you visit any of the locations specified in aliases---i.e., *assuming the same site domain*---you'll be redirected to the page they are specified on. For example, a visitor to `example.com/posts/my-original-url/` will be immediately redirected to `example.com/posts/my-awesome-post/`. ### Example: Aliases in Multilingual On [multilingual sites][multilingual], each translation of a post can have unique aliases. To use the same alias across multiple languages, prefix it with the language code. In `/posts/my-new-post.es.md`: ``` --- aliases: - /es/posts/my-original-post/ --- ``` ### How Hugo Aliases Work When aliases are specified, Hugo creates a directory to match the alias entry. Inside the directory, Hugo creates an `.html` file specifying the canonical URL for the page and the new redirect target. For example, a content file at `posts/my-intended-url.md` with the following in the front matter: ``` --- title: My New post aliases: [/posts/my-old-url/] --- ``` Assuming a `baseURL` of `example.com`, the contents of the auto-generated alias `.html` found at `https://example.com/posts/my-old-url/ will contain the following:` ```