gpt4 book ai didi

Node.js:如何为所有 URL 提供服务/index.html?

转载 作者:太空宇宙 更新时间:2023-11-03 23:44:20 25 4
gpt4 key购买 nike

我正在使用 Node.js,并且我想为所有 URL 提供/index.html。

例如,我想为所有这些提供/index.html:

foo.com
foo.com/index.html
foo.com/bling
foo.com/blah/index.html

如果可能的话,我不想更改浏览器显示的 URL。

这可能吗?如果可以,最好的方法是什么?

最佳答案

例如,您可以使用express.js MVC npm 模块

var express = require('express');
var app = express();

app.all('*', function(req, res){
res.sendfile("index.html");
});

app.listen(3000);

关于Node.js:如何为所有 URL 提供服务/index.html?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16500192/

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