mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
853 B
853 B
title | date | aliases | |||
---|---|---|---|---|---|
Aliases | 2013-07-09 |
|
For people migrating existing published content to Hugo theres a good chance you need a mechanism to handle redirecting old urls.
Luckily, this can be handled easily with aliases in Hugo.
Example
content/posts/my-awesome-blog-post.md
---
aliases:
- /posts/my-original-url/
- /2010/even-earlier-url.html
---
Now when you go to any of the aliases locations they will redirect to the page.
Important Behaviors
-
Hugo makes no assumptions about aliases. They also don't change based on your UglyUrls setting. You Need to provide a relative path and the complete filename or directory.
-
Aliases are rendered prior to any content and will be overwritten by any content with the same location.