I am hosting a static website on Amazon S3. Some of my client-side javascript parses the query strings to control the HTML. This works fine locally, but on the S3-hosted version, the query strings seem to get dropped from the request.
My motivation for using query strings is that I want to be able to pass state between pages based on what the user did on the previous page.
Is this approach possible? Did I violate the "static" requirement for S3 static websites?
I can't seem to find any mention of general query strings in the S3 docs, aside from the authentication stuff, which I don't think solves my problem.