I have a presentation on redirects How can I do this redirect in Astro?
I am using ssr on Astro adapter and node
For example, my presentation is as follows
[
{
"id": 1,
"source": "/blog/category/keyword/",
"destination": "/article/category/keyword/",
"permanent": true
},
{
"id": 2,
"source": "/features/pro/",
"destination": "/features/",
"permanent": true
},
{
"id": 3,
"source": "/blog/what-is-keyword/",
"destination": "/article/what-is-keyword/",
"permanent": true
},
]