Is it possible somehow to redirect to same route with query params ?
User hitting url:
localhost:3000
I want to modify it to be: localhost:3000/?something=somethingvalue
Tried res.redirect
but ofcourse I'm getting too many requests error, as I'm creating endless loop. Googled the solution but with no luck, maybe wording was wrong what I'm trying to achieve.
Is this even possible ?
Thanks