The following gives the output of the url/id.
app.get('/:id', function(req, res) {
res.send('with slash' + req.params.id);
});
However, when I'm dealing with multiple slashes in the URL, I'm unable to get the id. For example, I want url/id1/id2/etc.../id. What should I put in place of the /:id for this?