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.0.1:8000 and see if the redirect shows the right url there. Hope it helps. Diego On Monday, February 20, 2017 at 7:45:40 AM UTC-5, Rejoy wrote: > > Hi, > > I am trying to create a go routine to direct the request to another url: > > go http.ListenAndServe(":8000", http.RedirectHandler(" > https://127.0.0.1:8001",301)) > > I had earler made a mistake and had typed in "https://127.0.0.1/:8001" > for the url string. But now after rectifying the mistake to the above, I > am still being redirected to the incorrect url. > > When I type in the url ""https://127.0.0.1:8001", the page is rendered > correctly. > > Is there a need to explicitly stop go routines. Strangely even after > restarting the m/c, the request is being redirected incorrectly. > > Thanks > Rejoy > > > -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.