My payment gateway redirects successful orders to the following url:
https://example.com/checkout/order-received/33510/?key=wc_order_5b47427fe053c?params=...
I need to rewrite this to:
https://example.com/checkout/order-received/33510/?key=wc_order_5b47427fe053c¶ms=...
The URL I am sending to the payment gateway already has a Query String and the gateway is appending another string to it using a ? instead of an &.
How can I change the second ? into an &?
Can someone help, please?
Thanks.