我有下面的代码。...当我转到/目录时,就可以了。然后,如果我转到/ cats,它可以工作,但是如果我按f5键,它将抛出404错误,提示找不到页面。通过在线阅读,我发现ppl已将htaccess文件添加到公共目录中,但这对我没有帮助
render((
<Router history={hashHistory}>
<Route path="/" component={App}>
<IndexRedirect to="/index" />
<Route path="/index" component={Home}/>
<Route path="/dogs" component={Dogs}/>
<Route path="/cats" component={Cats}/>
</Route>
</Router>
), document.getElementById('app'))