我是新的在 下一个,我想知道如何重定向从开始页面(/)到 /hello-nextjs的例子。一旦用户加载了一个页面,然后确定是否 path = = /重定向到 /hello-nextjs
在 反应路由器中,我们这样做:
<Switch>
<Route path="/hello-nextjs" exact component={HelloNextjs} />
<Redirect to="/hello-nextjs" /> // or <Route path="/" exact render={() => <Redirect to="/hello-nextjs" />} />
</Switch>