Skip to content

Instantly share code, notes, and snippets.

@dbrugne
Last active August 29, 2015 14:09
Show Gist options
  • Save dbrugne/686ce36a753f446abd19 to your computer and use it in GitHub Desktop.
Save dbrugne/686ce36a753f446abd19 to your computer and use it in GitHub Desktop.
Simple node process HTTP redirect
var http = require('http'),
url = require('url');
var fqdnToRedirect = 'http://fqdn.tld';
var server = http.createServer(function(req, res) {
var q = url.parse(req.url).path;
console.log('now redirect to '+q);
res.writeHead(302, {
'Location': fqdnToRedirect+q
});
res.end();
});
server.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment