php-proxy-app icon indicating copy to clipboard operation
php-proxy-app copied to clipboard

URLs with only GET keys in query result in 404

Open deepvision7 opened this issue 7 months ago • 0 comments

Some sites expect query string only with keys and without values and generate 404 otherwise. E.g. https://example.com/path?key1&key2 URL gets transformted into https://example.com/path?key1=&key2= by the proxy script and results in 404 not found error.

Also query key with a dot character inside gets transformed into underscore. E.g. https://example.com/path?key.1 => E.g. https://example.com/path?key_1

deepvision7 avatar Apr 21 '25 07:04 deepvision7