this snippit shows you how to redirect a page to another website,page
let bodyHtml = `
Page Redirection
If you are not redirected automatically, follow this link to example.com.
`;
return {
statusCode: 200,
headers: {
'Content-Type': 'text/html',
},
body: bodyHtml,
};