Forum Moderators: phranque
RewriteRule ^/(.*)$ [127.0.0.1:85%{REQUEST_URI}...] [P,L,QSA]
it following results in some double encoding of the % signs in the request parameters, turning them into %25.
For example, if the request is:
[example.com...]
the request received on the backend comes out as
/flow.html?_flow=myflow&returnUrl=https%253A%252F%252Fwww.example.com%252Findex.html
Oddly enough, when I do the same thing without SSL (via http) the same issue does not exist.
Any ideas would be greatly appreciated.