<div dir="ltr"><div class="gmail_default" style="font-size:small;color:rgb(51,51,153)">The '%' character has a meaning in the HTTP URI grammar, indicating that the following bytes are hexadecimal value representing a unicode character (see <a href="https://tools.ietf.org/html/rfc3986#section-2.1">https://tools.ietf.org/html/rfc3986#section-2.1</a>).<br></div><div class="gmail_default" style="font-size:small;color:rgb(51,51,153)">If you try to implement what you suggest, you will basically corrupt URIs from someone tring to access your website with Unicode-encoded strings, which might be perfectly valid.<br></div><div class="gmail_extra"><br><div class="gmail_default" style="font-size:small;color:rgb(51,51,153)">​The only solution I find viable is that you remove percent character from your URIs which are not representing Unicode characters, for example by encoding '%'.​ The percent-encoded version of '%' is '%25'.<br></div><div><div class="gmail_signature"><font size="1"><span style="color:rgb(102,102,102)">---<br></span><b><span style="color:rgb(102,102,102)">B. R.</span></b><span style="color:rgb(102,102,102)"></span></font></div></div>
<br><div class="gmail_quote">On Mon, Nov 23, 2015 at 9:40 AM, shahzaib shahzaib <span dir="ltr"><<a href="mailto:shahzaib.cb@gmail.com" target="_blank">shahzaib.cb@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi,<input name="virtru-metadata" value="{"email-policy":{"state":"closed","expirationUnit":"days","disableCopyPaste":false,"disablePrint":false,"disableForwarding":false,"expires":false},"attachments":{}}" type="hidden"><div><br></div><div>  Thanks for the reply, now we've tons of these URLs which are not properly encoded. Can we redirect '%' request to the same URL by excluding '%' ? Such as<br><br><a href="http://domain.com/video/100%-working" target="_blank">http://domain.com/video/100%-working</a> </div><div><br></div><div>to</div><div><br></div><div><a href="http://domain.com/video/100-working" target="_blank">http://domain.com/video/100-working</a></div><div><br></div><div>Regards.</div><span class="HOEnZb"><font color="#888888"><div>Shahzaib</div></font></span></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Nov 23, 2015 at 1:20 PM, nanaya <span dir="ltr"><<a href="mailto:me@myconan.net" target="_blank">me@myconan.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span><br>
<br>
On Mon, Nov 23, 2015, at 05:17 PM, shahzaib shahzaib wrote:<br>
> Hi,<br>
><br>
>    We've encountered with 400 Bad request error on nginx reverse proxy in<br>
> front of apache. Here is the attached link :<br>
><br>
> <a href="http://prntscr.com/95wlsl" rel="noreferrer" target="_blank">http://prntscr.com/95wlsl</a><br>
><br>
> If we remove '%' from the URL, it works fine. What could be the issue ?<br>
><br>
<br>
</span>`%-` isn't a valid percent-encoding (and thus a bad request). Try<br>
encoding the url properly.<br>
<br>
_______________________________________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org" target="_blank">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" rel="noreferrer" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a><br>
</blockquote></div><br></div>
</div></div><br>_______________________________________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" rel="noreferrer" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a><br></blockquote></div><br></div></div>