Skip to content

Instantly share code, notes, and snippets.

@Enome
Created August 23, 2013 19:12
Show Gist options
  • Save Enome/6322918 to your computer and use it in GitHub Desktop.
Save Enome/6322918 to your computer and use it in GitHub Desktop.
app.use(function (req, res, next) {
if(req.url.substr(req.url.length - 4) === '.php') {
return res.redirect(301, req.url.substr(0, req.url.length - 4);
}
next();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment