Reputation: 4340
Using the Hugo static site generator, is it possible to change the categories page URL, e.g. change the default /categories/travel/
to only /travel/
?
Perhaps something like, in config.toml
:
[permalinks]
post = "/:slug/"
page = "/:slug/"
category = "/:slug/"
Upvotes: 1
Views: 2150
Reputation: 154
According to Hugo docs:
You can also configure permalinks of taxonomies with the same syntax, by using the plural form of the taxonomy instead of the section.
So, just add this to config.toml
:
[permalinks]
categories = "/:slug/"
Upvotes: 4