我有一个视图助手,它预先将public/
文件的 md5 用作缓存破坏器:
<link href="http://localhost:3000/139cce29ff216955a42ae663b061730d/index.css" rel="stylesheet">
由于 URL 中的 md5 部分只是浏览器的“技巧”,我希望静态快速中间件提供常规public/index.css
文件。
我怎样才能写出这样的规则:
//...
var static = express.static('public');
//...
app.get('/:md5([a-zA-Z0-9]{32})*', function (req, res, next) {
var md5 = req.param('md5');
var filepath = req.param(0);
// --> NEED YOUR HELP HERE :) <--
next();
});
先感谢您