We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
• 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.
"/#/"
http://localhost/%23
• What did you expect to see? An HTTP redirect to "/%23/"
"/%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.
The text was updated successfully, but these errors were encountered:
CL https://golang.org/cl/9311 mentions this issue.
Sorry, something went wrong.
450988b
No branches or pull requests
• 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 tohttp://localhost/%23
.• What did you expect to see?
An HTTP redirect to
"/%23/"
• What did you see instead?
The server appends a slash to the un-escaped path and redirects the client. Following this redirect gives a 404.
The text was updated successfully, but these errors were encountered: