I need to put a bandaid on a site that 404's if you request a /path with no trailing slash. I alread

I need to put a bandaid on a site that 404's if you request a /path with no trailing slash. I already made a redirect on the server that redirects /path?and=params to /path/?and=params but it's too slow. How can I do that in a Redirect Rule? The query string is unique for most requests, so that needs to be copied from request to redirect Location. I tried adding "URI Full" equals "https://domain.com/path" redirecting to "https://domain.com/path/" with "preserve query string" checked, but that isn't matching.
Was this page helpful?