Hi!
So we’re currently in the process of making our site multi-lingual. Our plan is to move to sub-folder based language-urls: my-site.com
becomes my-site.com/en
, my-site.com/cool-stuff
becomes my-site.com/en/cool-stuff
, etc.
This more or less works if we add language-based redirects to our Netlify config:
/* /en/:splat Language=en
But now everything gets redirected (incl. CSS and JavaScript files which live in the root of the website and aren’t localized).
Is there a way to get around this?
Thanks in advance.
Flo