I need to redirect links with query params like this:
/index.php?x=7065
I have this in netlify.toml:
[[redirects]]
from = “/index.php”
to = “/target/path”
status = 301
force = false
query = {x = “7065”}
But that does not work.
File-based configuration | Netlify Docs explains how to do it for any value of a query parameter, not for a specific one like in my case.
Any advice?