2013-08-10 10:35:34 -04:00
|
|
|
---
|
2013-08-17 08:34:25 -04:00
|
|
|
aliases:
|
2014-05-29 18:42:05 -04:00
|
|
|
- /doc/redirects/
|
|
|
|
- /doc/alias/
|
|
|
|
- /doc/aliases/
|
|
|
|
date: 2013-07-09
|
2014-04-23 03:00:11 -04:00
|
|
|
menu:
|
|
|
|
main:
|
2014-05-29 18:42:05 -04:00
|
|
|
parent: extras
|
|
|
|
next: /extras/builders
|
|
|
|
prev: /taxonomies/ordering
|
|
|
|
title: Aliases
|
|
|
|
weight: 10
|
2013-08-10 10:35:34 -04:00
|
|
|
---
|
|
|
|
|
2014-09-03 00:12:26 -04:00
|
|
|
For people migrating existing published content to Hugo, there's a good chance
|
2014-08-31 07:08:36 -04:00
|
|
|
you need a mechanism to handle redirecting old URLs.
|
2013-08-10 10:35:34 -04:00
|
|
|
|
|
|
|
Luckily, this can be handled easily with aliases in Hugo.
|
|
|
|
|
|
|
|
## Example
|
|
|
|
**content/posts/my-awesome-blog-post.md**
|
2014-05-15 09:58:55 -04:00
|
|
|
|
2015-01-17 02:45:53 -05:00
|
|
|
<table class="table">
|
2015-01-27 21:17:09 -05:00
|
|
|
<thead>
|
2015-01-17 02:45:53 -05:00
|
|
|
<tr>
|
2015-01-27 21:17:09 -05:00
|
|
|
<th>TOML</th><th>YAML</th>
|
2015-01-17 02:45:53 -05:00
|
|
|
</tr>
|
2015-01-27 21:17:09 -05:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2015-01-17 02:45:53 -05:00
|
|
|
<tr valign="top">
|
|
|
|
<td><pre><code>+++
|
|
|
|
aliases = [
|
|
|
|
"/posts/my-original-url/",
|
|
|
|
"/2010/even-earlier-url.html"
|
|
|
|
]
|
|
|
|
+++
|
|
|
|
</code></pre></td>
|
2015-01-27 21:17:09 -05:00
|
|
|
<td><pre><code>---
|
|
|
|
aliases:
|
|
|
|
- /posts/my-original-url/
|
|
|
|
- /2010/even-earlier-url.html
|
|
|
|
---
|
|
|
|
</code></pre></td>
|
2015-01-17 02:45:53 -05:00
|
|
|
</tr>
|
2015-01-27 21:17:09 -05:00
|
|
|
</tbody>
|
2015-01-17 02:45:53 -05:00
|
|
|
</table>
|
2013-08-10 10:35:34 -04:00
|
|
|
|
2014-09-03 00:12:26 -04:00
|
|
|
Now when you go to any of the aliases locations, they
|
2013-08-10 10:35:34 -04:00
|
|
|
will redirect to the page.
|
|
|
|
|
|
|
|
## Important Behaviors
|
|
|
|
|
|
|
|
1. *Hugo makes no assumptions about aliases. They also don't change based
|
2013-09-13 19:06:39 -04:00
|
|
|
on your UglyUrls setting. You need to provide absolute path to your webroot and the
|
2013-08-10 10:35:34 -04:00
|
|
|
complete filename or directory.*
|
|
|
|
|
|
|
|
2. *Aliases are rendered prior to any content and will be overwritten by
|
|
|
|
any content with the same location.*
|