How to avoid the method POST to executed in the URL I am redirected to?
How to avoid the method POST to executed in the URL I am redirected to?
routes/admin/login.tsx
routes/admin/index.tsx
2 Replies
307 status code will retain the request method. Try to use 303 or something similar.
Thanks, with that I'd solved my problem 😄