app.use([path,] function [, function...])
Mounts the specified middleware function or functions at the specified path. If path is not specified, it defaults to “/”.
A route will match any path that follows its path immediately with a “/”. For example: app.use('/apple', ...) will match “/apple”, “/apple/images”, “/apple/images/news”, and so on.
Note that req.originalUrl in a middleware function is a combination of req.baseUrl and req.path, as shown in the following example.
app.use('/admin', f