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
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
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