NuxtN
Nuxt13mo ago
Omnislash

Redirect all routes to /

Hello,

I would like to redirect all potential routes to my index page ('/')

I tried this in nuxt.config.ts :
    routeRules: {
        '/**': { redirect: '/' },
    },

But it looks like it's giving me an infinite loop

I didn't try with a middleware but... it seems more proper and elegant to do it in the routeRules ?

Thanks 🙂
Was this page helpful?