I need to create a rule that rewrites an URL to a new one with code 301 and at the same time brings a Custom Response with code 200 (HTTP OK) also redirecting the data submitted by POST. I did this with two rules, however the data submitted is lost along the way during the redirection.
Share
I solved it by using the 307 redirection (Temporary redirection), which unlike the other redirections, doesn’t convert the post request to get.
Thank you!