I have a S3 bucket with static website hosting
S3 is encoding route
/AniketFuryRocks/What is Lorem Ipsum?
to route
/AniketFuryRocks/What+is+Lorem+Ipsum%3F
instead of route
/AniketFuryRocks/What%20is%20Lorem%20Ipsum?
This Url encoding is resulting in a 404 error.
I have tried storing the object's route in both encoded and decoded fashing.
When storing the S3 Object using javascript encodeUri()
function. Paths with spaces are working but paths with symbols like ?
are not working.
I am noticing that the browser asks for a ?
while s3 expects a %3F
at the end of the string