Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

net/http: ServeMux uses un-escaped paths in the implicit /tree → /tree/ redirect #10572

Closed
ghost opened this issue Apr 24, 2015 · 1 comment
Milestone

Comments

@ghost
Copy link

ghost commented Apr 24, 2015

• go version
go version go1.4.1 linux/amd64

• What did you do?
http://play.golang.org/p/bD-nCEHtR_
Registered a http.Handler for the pattern "/#/" and made a GET request to http://localhost/%23.

• What did you expect to see?
An HTTP redirect to "/%23/"

• What did you see instead?

HTTP/1.1 301 Moved Permanently
Location: /#/

The server appends a slash to the un-escaped path and redirects the client. Following this redirect gives a 404.

@gopherbot
Copy link

CL https://golang.org/cl/9311 mentions this issue.

@ianlancetaylor ianlancetaylor added this to the Go1.5Maybe milestone Jun 3, 2015
@rsc rsc closed this as completed in 450988b Jun 26, 2015
@mikioh mikioh modified the milestones: Go1.5, Go1.5Maybe Jun 26, 2015
@golang golang locked and limited conversation to collaborators Jun 25, 2016
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

4 participants