Skip to content

Instantly share code, notes, and snippets.

@mikeywaites
Created August 30, 2012 10:52
Show Gist options
  • Save mikeywaites/3526232 to your computer and use it in GitHub Desktop.
Save mikeywaites/3526232 to your computer and use it in GitHub Desktop.
app.configure(function(){
app.use(function(req, res, next){
if ( "GET" == req.method && "/" != req.url[ req.url.length - 1 ] ) {
req.url += "/";
res.redirect(req.url)
return;
}
next();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment