标签: 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')); });
但是应用只需重定向'/'