Hi everyone,
I want to ask about the slug for pagination URLs in Hugo that follow the pattern page/1, page/2, page/3, and so on.
In my previous CMS, I had problematic URLs and I set up a slug containing “page” to generate an HTTP 410 status.
Of course, this caused the pagination pages to return a 410 status.
What I want to ask is whether we can change “page” to another word like “pages” so that the URLs would be pages/1, pages/2, and so on.
i tried
[pagination]
url = "laman"
on my hugo.toml but it doesn’t work
Thank you.