Skip to content

Instantly share code, notes, and snippets.

@fiveisprime
Last active January 2, 2016 10:39
Show Gist options
  • Save fiveisprime/8291866 to your computer and use it in GitHub Desktop.
Save fiveisprime/8291866 to your computer and use it in GitHub Desktop.
Redirect Express to www.
app.all(/.*/, function(req, res, next) {
var host = req.header('host');
if (host.match(/^www\..*/i)) return next();
res.redirect(301, 'http://www.' + host);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment