基于子域,我想在公共目录中提供特定的文件夹。我已经设置了vhost来检查localhost之前的子域,然后将静态路径设置为。但是我现在该如何实际使用静态应用程序。
this.app = connect();
this.config = new Config();
this.static = connect();
this.app.use(vhost("*.localhost", (req, res, next) => {
const host = req.vhost[0];
const hostPath = path.join(__dirname, "public", host);
this.static.use(serveStatic(hostPath));
next();
}));
我刚得到
无法获取/