1 Answer
- Newest
- Most votes
- Most comments
0
The problem is that the "#" is a directive to the browser, and does not get sent to the server, whether it is Lambda@Edge or any other server. For example if I request:
Then this gets sent to the Lambda:
"method": "GET",
"querystring": "",
"uri": "/test/"
If there were text after the #, then you could access it in client-side JS via location.hash
answered 5 years ago
Relevant content
- AWS OFFICIALUpdated 10 months ago
