next.config.js dosyası içinde:
async redirects() {
return [
{
source: '/',
destination: '/myURL',
permanent: true,
},
]
},
diyerek root url için yönlendirme yapsak dahi başka bir component içinden Link href ile root url yönlendirmesi yaptığımızda myURL yoluna yönlendirme yapmıyor. Bunu aşmak için redirects'i rewrite ile beraber kulanmalıyız.
async rewrites() {
return {
beforeFiles: [
{
source: "/",
destination: "/myURL",
},
],
};
},