Hello,
Is there any way to rename the word “tag” in the URL.
For example one of my current URL is https://blog.reunionhq.in/tag/news/ and I want to rename the word tag with page.
So the final URL would be https://blog.reunionhq.in/page/news/
Is this sort of thing possible as I was not able to find any discussion with regard to this topic
This can be done from the routes.yaml file. Here’s the base configuration:
The important part in your case is the taxonomies:
taxonomies:
tag: /tag/{slug}/
author: /author/{slug}/
There you can replace the /tag/{slug}/ with /page/{slug}/
The steps to do this:
- Download your current routes from Settings > Labs > Routes
- Change the taxonomies part in the downloaded file
- Re-upload the changed routes.yaml
1 Like
Hi,
Thank you so much for helping me out!