Redirect with all query param

Hello,

we have a website, www.luko.eu that run with a very high number of query param (more than 50) that can exist or not.
When users are going on our homepage : www.luko.eu?p1=123&p2=1234, we want to redirect them to the right language sub-url and keeping all the query param existing :

If En : www.luko.eu/en/?p1=123&p2=1234
else (fr by default) : www.luko.eu/fr/?p1=123&p2=1234

Here our netlify.toml file but as you know, we are losing all our query param on this redirect that is terrible.

[[redirects]]
  from = "/*"
  to = "/en/:splat"
  status = 301
  conditions = {Language = ["en"]}


[[redirects]]
  from = "/*"
  to = "/fr/:splat"
  status = 301

Any idea
Thanks.

Hi @devLuko,

What you describe is currently not supported. We do have an existing feature request for that and I’ve added your voice to the request. We’ll let you know when or if we get that feature implemented. Thanks!