次のコードがあります。
app.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"
}
いくつかのバリエーションで試しましたが、どれもうまくいかないようでした。
私はそれがかなり明白なものであるべきだと確信しています