Can CloudFront redirect issuing 302?

Solution 1:

This is a perfect use for Lambda@Edge.

You can reference the AWS example here, but at a high level you’re going to create a Lambda function and then add that to your CloudFront distribution as the viewer-request Lambda, which will return the 302 redirect to your user for you; for the redirect you can use the example code and simply update the location value to your value and you should be good to go.