I have a use case where I would like all requests to start with a prefix like:
https://WHATEVER/pfx
For example https://WHATEVER/pfx/a and https://WHATEVER/pfx/b/c/d
But I wish to prevent https://WHATEVER/somewhere_else and similar requests that do not include the prefix (pfx). In preventing this, I'd like to simply redirect all such requests to https://WHATEVER/pfx (home page)
Is this possible with AWS ALB?
Thanks in advance!