Skip to content

Instantly share code, notes, and snippets.

@nootrope
Last active June 10, 2020 16:29
Show Gist options
  • Save nootrope/116c0f3a15e3065901ac9da74022e636 to your computer and use it in GitHub Desktop.
Save nootrope/116c0f3a15e3065901ac9da74022e636 to your computer and use it in GitHub Desktop.
exports.handler = async (event) => {
const response = {
statusCode: 301,
headers: {
Location: 'https://destination-domain.tld'
}
};
return response;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment