URLs to directories not ending with a slash are not redirected properly #2
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	
	No description provided.
		
		Delete branch "%!s()"
	 
	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/objectThen 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.