In my docusarus page I'd like to set up a redirect:
- from
example.com/docs
andexample.com/changelog
- to
example.com/docs/intro/
andexample.com/docs/changelog/
respectively
I installed the plugin @docusaurus/plugin-client-redirects and I created the following entry
[
'@docusaurus/plugin-client-redirects',
{
redirects: [
// /docs/oldDoc -> /docs/newDoc
{
to: '/docs/',
from: '/docs/intro/',
},
{
to: '/changelog/',
from: '/docs/changelog/',
},
],
},
],
But I still get Page not found
.