URLs to directories not ending with a slash are not redirected properly #2
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
URLs to "directories" (which in S3 are just prefixes) are not properly rewritten to contain a slash and the client re-directed. This is a bug.
Assume there is an object in a bucket:
prefix/object
Then the following URL will show an empty listing: https://hostname/prefix
While the following URL will show the correct listing: https://hostname/prefix/
If there is no object at https://hostname/prefix, we should produce a 301 permanent redirect appending a slash at the end.