Hey All, 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.:
curl -I "http://foo.bar.example.com/foobar.css?v=2" HTTP/1.1 301 Moved Permanently [clipped] Location: http://foo.bar.example.com/foobar.css?v=2?v=2 Nginx config: location / { if ($scheme = http) { rewrite ^ https://$http_host$request_uri permanent; } Any ideas? Thanks in advance. Regards, Justin Dorfman <http://www.twitter.com/jdorfman>
_______________________________________________ nginx mailing list [email protected] http://mailman.nginx.org/mailman/listinfo/nginx
