Hi,
I’m trying to use URL rewrites with gatsby but it doesn’t work as expected. The URL is https://keen-hamilton-1f404d.netlify.app/fr_CA/abc. You’ll see that it’ll be redirected to another URL whereas the expected behavior is to keep the same URL.
Also, when I use netlify dev
, it shows redirect to /region1/fr/abc
but doesn’t actually redirect. I was able to see Rewrote URL to /region1/fr/abc
in the console, though.
Below is my _redirects
file:
/fr_CA/* /region1/fr/:splat 200!
Thanks for the help!