Skip to content

Instantly share code, notes, and snippets.

@k33g
Created January 19, 2012 17:49
Show Gist options
  • Save k33g/1641422 to your computer and use it in GitHub Desktop.
Save k33g/1641422 to your computer and use it in GitHub Desktop.
node.js redirection
response.setHeader('Location', url);
response.setHeader('Content-Length', body.length);
response.setHeader('Content-Type', 'text/html');
response.statusCode = 302;
response.end(body);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment