2

Recently, I noticed that requests to RestAPIs in API Gateway are path case-sensitive.

How exactly can I disable this so that it is no longer case sensitive? Is this even possible?

Id like my request to api.company.com/prod to work along with api.company.com/Prod

Can an expert AWS API Gateway expert chime in here? Is this really a hard constraint?

Judy007
  • 5,484
  • 4
  • 46
  • 68
  • Does this answer your question? [How to make the AWS API Gateway request path case insensitive](https://stackoverflow.com/questions/53225519/how-to-make-the-aws-api-gateway-request-path-case-insensitive) – Metro Smurf Mar 21 '23 at 20:29

1 Answers1

0

AWS is case sensitive by design, but here's a good answer may help to accomplish what you're looking for:

https://stackoverflow.com/a/53228443/10348028

That guy explains some good options you may use

Herberth Gomez
  • 187
  • 1
  • 2
  • 19
  • How do I trace requests that come into the RestAPI and dont map to a stage based on case sensitivity? – Judy007 Jun 29 '20 at 21:09