反应路由器被重定向太多次

时间:2019-04-02 23:08:24

标签: reactjs redirect react-router

我有以下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

非常感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

通常我只需设置<Redirect to="/" />(没有其他参数),它就可以正常工作。