Query strings duplicating on 301 redirect

Richard Stanway r1ch+nginx at teamliquid.net
Mon May 5 21:08:43 UTC 2014


Just a note, I think the preferred way to do this is with "return". It's
much simpler (no rewrite / PCRE overhead):

location / {
if ($scheme = http) {
return 301 https://$http_host$request_uri;
}


On Mon, May 5, 2014 at 10:54 PM, Justin Dorfman <jdorfman at netdna.com> wrote:

> Thanks Francis, worked perfectly.
>
>
> Regards,
>
> Justin Dorfman <http://www.twitter.com/jdorfman>
>
> Director of Developer Relations
> MaxCDN <http://twitter.com/MaxCDNDeveloper>
>
> Email / IM: jdorfman at maxcdn.com
> Mobile: 818.485.1458
> Twitter: @jdorfman <http://www.twitter.com/jdorfman>
>
>
> On Mon, May 5, 2014 at 1:11 PM, Francis Daly <francis at daoine.org> wrote:
>
>> On Mon, May 05, 2014 at 12:14:48PM -0700, Justin Dorfman wrote:
>>
>> Hi there,
>>
>> > I am trying to redirect (301) all HTTP request to TLS (HTTPS) and I keep
>> > getting duplicate query strings added to the uri. e.g.:
>>
>> http://nginx.org/r/rewrite
>>
>> Second last paragraph looks like it should fix it.
>>
>>         f
>> --
>> Francis Daly        francis at daoine.org
>>
>> _______________________________________________
>> nginx mailing list
>> nginx at nginx.org
>> http://mailman.nginx.org/mailman/listinfo/nginx
>>
>
>
> _______________________________________________
> nginx mailing list
> nginx at nginx.org
> http://mailman.nginx.org/mailman/listinfo/nginx
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx/attachments/20140505/13ed47da/attachment.html>


More information about the nginx mailing list