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
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
GET /
/index.html
GET /folder/
/folder/index.html
GET /folder
Actual result: GET / returns /index.html content GET /folder/ returns /folder/index.html content GET /folder returns 404
The text was updated successfully, but these errors were encountered:
Add implicit '/' to directories
31c9331
Something like this to fix pottava#22
@antonu17 Thank you for your great opinion. It should be helpful for almost all projects. Let me see your PR later, thanks again :)
Sorry, something went wrong.
+ 1
pottava
Successfully merging a pull request may close this issue.
Feature or enhancement request
Given s3 bucket content:
Desired result:
GET /
returns/index.html
contentGET /folder/
returns/folder/index.html
contentGET /folder
returns/folder/index.html
contentActual result:
GET /
returns/index.html
contentGET /folder/
returns/folder/index.html
contentGET /folder
returns 404The text was updated successfully, but these errors were encountered: