我的node.js + react.js应用程序中的catch-all路由出现问题

时间:2017-04-09 15:13:04

标签: javascript node.js reactjs

要在我的node.js + react.js应用程序中刷新或写入手动URL而不使用“Can not GET / *”,我在服务器端使用此代码来捕获所有路由并返回index.html:

app.all('*',(req, res) => {
res.sendFile(path.join(__dirname, 'reactjs/dist/index.html'));
});

但是应用只需重定向'/'

0 个答案:

没有答案