我有一个使用 create-react-app 创建的 React 应用程序。
在我运行npm run build
并将应用程序部署为静态站点后,一切正常,除非我在索引以外的路由上刷新页面时,它失败并显示500 internal server error
.
下面是我的路由器的代码。使用react-router。
<Router history={browserHistory}>
<Route path="/">
<IndexRoute component={Login}/>
<Route path="/dashboard" component={Dashboard}></Route>
<Route path="/profile" component={Profile}/>
</Router>
任何帮助表示赞赏。