app.get('*', function(req, res) {
res.sendFile(__dirname + '/dashboard/index.html');
});
在上面的代码404中,重定向到index.html,如果设置为404.html&第一次重新加载我的页面我的内容加载一旦我刷新我的页面重定向到404页面。
答案 0 :(得分:3)
请尝试使用以下代码。
app.get('/something/*', function(req, res) {
res.sendFile(__dirname + '/something/index.html');
});
app.get('*', function(req, res) {
res.sendFile(__dirname + '/something/404.html');
});
for rendering the html use your routing instead of something with* sign.