我有以下代码:
应用程序.js
[...]
server.get(/\/docs\/public\/?.*/, restify.serveStatic({
directory: './public'
}));
server.listen(1337, function() {
console.log('%s listening at %s', server.name, server.url);
});
我有以下文件结构
app.js
public/
index.html
所以我尝试浏览:
http://localhost:1337/docs/public/index.html
我得到
{
code: "ResourceNotFound",
message: "/docs/public/index.html"
}
我尝试了几种变体,但它们似乎都不起作用。
我敢肯定这应该是很明显的我想念的东西