1,
首先引入
import {BrowserRouter,Route,Switch,Redirect} from 'react-router-dom'
2,使用
一般写在所有路由注册的最下方,当所有路由都无法匹配时,跳转到Redirect指定的路由
<Switch>
<Route path="/about" component={About}/>
<Route path="/home" component={Home}/>
<Redirect to="/about"/>
</Switch>