gpt4 book ai didi

node.js - 从/提供静态文件

转载 作者:太空宇宙 更新时间:2023-11-04 01:57:22 25 4
gpt4 key购买 nike

如果我定义

app.use('/*', express.static(path.join(__dirname, '../pub/index.html')));

那么看来我需要在网址中的/之后提供至少一个字符才能获取 index.html。如果我仅使用 / 定义路由,则浏览器中的任何内容都会收到 404 错误。

如何获得仅使用 / 提供的默认文件?

最佳答案

您可以使用serve-static :

app.use(serveStatic(path.join(__dirname, '../pub'), {'index' ['index.html']}));

它应该提供位于../pubindex.html,如果你调用例如本地主机:3000

关于node.js - 从/提供静态文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47373064/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com