I would like to rewrite my URLs on my ExpressJS website. I\'ve used this plugin, https://github.com/joehewitt/express-rewrite, but it doesn\'t work...
However, I mig
Try this:
app.get('/toto', function(req, res) { res.redirect('/heytoto'); });