[go-nuts] Re: Issue with Goroutine and http.RedirectHandler

2017-02-20 Thread Rejoy
Hi, Yes it helps!. This is the output I get from curl -v ***output Trying 127.0.0.1... * connected * Connected to 127.0.0.1 (127.0.0.1) port 8000 (#0) > GET / HTTP/1.1 > User-Agent: curl/7.26.0 > Host: 127.0.0.1:8000 > Accept: */* > * additional stuff not fine trans

[go-nuts] Re: Issue with Goroutine and http.RedirectHandler

2017-02-20 Thread Diego Medina
Most likely this is your browser that "remembers" that going to one url was redirecting to the "incorrect" url, and it doesn't even hit your local server any more. To make sure this is the case, use curl from the command line with the -v paarameter to see all the headers: curl -v http://127.0.