Skip to content

Instantly share code, notes, and snippets.

@darlanmendonca
Last active August 29, 2015 14:19
Show Gist options
  • Select an option

  • Save darlanmendonca/6f46d3fc4f4fcb3357a9 to your computer and use it in GitHub Desktop.

Select an option

Save darlanmendonca/6f46d3fc4f4fcb3357a9 to your computer and use it in GitHub Desktop.
Redirect domain with www to domain without www
app.all '*', (req, res, next) ->
if req.headers.host.match /^www/
newUrl = req.headers.host.replace /^www\./, ''
res.redirect "http://#{newUrl}#{req.url}"
else
next()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment