AWS Lambda - redirect URL
-
To redirect URL using Lambda (and API Gateway)
export const handler = async(event) => { let redirectionUrl = "https://www.google.com"; /* 302 status is temporarily redirect 301 status is permenent redirect */ const response = { statusCode: 302, headers: { Location: redirectionUrl, } }; return response; };