我有路线
import { HashRouter } from 'react-router-dom';
<HashRouter>
<BrowserRouter>
<Switch>
<Route path="/admin" render={props => <AdminLayout {...props} />} />
<Route path="/auth" render={props => <AuthLayout {...props} />} />
<Redirect from="/" to="/auth/login" />
</Switch>
</BrowserRouter>
</HashRouter>
当我刷新服务器上的页面时,出现404错误。 还如何设置基本URL?