You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using URL rewrite function of http-master for my product.
There is no problem in single byte character for a request.
But, If I use multibyte character string at the URI path string, then it makes an encoding problems.
As a result, I had patched following codes in proxy.js.
var processed = regexpHelper(target.href, req.match);
processed = encodeURI(processed);
Then, Multibyte character issue was resolved.
But, I'm not sure how this code is appropriate for your code structure.
Could you please fix this issue?
The text was updated successfully, but these errors were encountered:
I'm using URL rewrite function of http-master for my product.
There is no problem in single byte character for a request.
But, If I use multibyte character string at the URI path string, then it makes an encoding problems.
As a result, I had patched following codes in proxy.js.
var processed = regexpHelper(target.href, req.match);
processed = encodeURI(processed);
Then, Multibyte character issue was resolved.
But, I'm not sure how this code is appropriate for your code structure.
Could you please fix this issue?
The text was updated successfully, but these errors were encountered: