我正在使用 NodeJS 和 HTML5 pushstate。我的 index.html 位于“/”,并带有通过 pushstate 转到“/home/”的链接。没关系,但如果我在 /home/ 上刷新页面,我的服务器会返回“无法获取 /home/”。
我只想让“/home/”像“/”一样返回我的 index.html 文件
我的代码:
var express = require("express"),
app = express();
app.use(express.static(__dirname + '/public'));
app.get('/home/', function(req, res, next) {
//what to do here?
});
app.listen(3001);
谢谢。