Re: encoded url

2015-05-27 Thread Francis Daly
On Sat, May 23, 2015 at 01:56:32PM -0400, pierob83 wrote: Hi there, > I've nginx 1.2.5 and I've an issue about encoded URLs. I've not tested this on 1.2.5; but the concept should remain the same. > Is there a way to make nginx accepts URL like the following: > > http://www.mywebsit

Re: encoded url

2015-05-23 Thread J.J J
For http://www.mywebsite.com/image.php%3Fid%3D12345, the uri is "/image.php?id=12345" after decoded, so nginx may try to find file with name "image.php?id=12345" based on your config file. That's why you got 404. For http://www.mywebsite.com/image.php?id=12345, the uri is "/image.php" and argument

encoded url

2015-05-23 Thread pierob83
Hello everyone, I've nginx 1.2.5 and I've an issue about encoded URLs. Is there a way to make nginx accepts URL like the following: http://www.mywebsite.com/image.php%3Fid%3D12345 as equivalent of the following? http://www.mywebsite.com/image.php?id=12345 In my current configurat