これは機能します:
http://localhost:3000/private/test2.html
app.use('/private',express.static(path.join(__dirname, 'private')));
しかし、ミドルウェアを追加するとすぐにページが見つかりません。
var secure = function(req,res,next) {
console.log('in here' + req.url);
next();
}
app.use('/private',secure,express.static(path.join(__dirname, 'private')));
ミドルウェアを配置すると、404 が返されます。何が欠けているのでしょうか?