Hello,
I’m working on a heavily modified Chakra Ui theme and I need to change the route of https://mywebsite.com/author/{-authorName-} and https://mywebsite.com/category/-{categoryName-} but I don’t know where these routes come from.
What I want to do is remove the ‘/author/’ from the URL so I can use https://mywebsite.com/{authorName} instead.
I have tried to use a custom handler to redirect
https://mywebsite.com/{authorName}
to Archive, it works but I don’t have the posts attached to the link like in https://mywebsite.com/author/{authorName}
Is there way I can modify these routes instead of adding another handler ?
Thanks