aws-s3-proxy
aws-s3-proxy copied to clipboard
Add implicit '/' to directories
Feature or enhancement request
Given s3 bucket content:
├── folder
│ └── index.html
└── index.html
Desired result:
GET / returns /index.html content
GET /folder/ returns /folder/index.html content
GET /folder returns /folder/index.html content
Actual result:
GET / returns /index.html content
GET /folder/ returns /folder/index.html content
GET /folder returns 404
@antonu17 Thank you for your great opinion. It should be helpful for almost all projects. Let me see your PR later, thanks again :)
+ 1