我有以下Router.jsx,我想完成的工作是将所有通配符重定向回根级别(主页)。
即http://xxxxxxx.com/randomPath应该重定向到-> http://xxxxxxx.com/
<Switch>
<Route exact path="/" component={Home} />
<Route path="/home" component={Home} />
<Route path="/faq" component={Faq} />
<Route path="/more" component={Faq} />
<Route path="/signup" component={SignUp} />
<Route path="/legal" component={Legal} />
<Route path="/ugc" component={Ugc} />
<Route path="/pricing" component={Pricing} />
<Redirect from="*" to='/' />
</Switch>
但是,在测试时,我得到:ERR_TOO_MANY_REDIRECTS
非常感谢您的帮助!
答案 0 :(得分:0)
通常我只需设置<Redirect to="/" />
(没有其他参数),它就可以正常工作。