在访问主 URL 之前访问的任何 URL 上返回 404

IT技术 reactjs react-router react-router-dom
2021-05-01 14:24:50

我正在为我的应用程序使用 react-router,当我将它部署到服务器上时,我注意到如果我在打开主页 URL 之前请求任何 URL,它将返回 404。然后在访问主页 URL 后,所有其他 URL 都可以正常工作!

索引.tsx:

ReactDOM.render(
  <BrowserRouter>
    <App />
  </BrowserRouter>
  ,
  document.getElementById('root') as HTMLElement
);

应用程序.tsx:

public render()
  {
    return(
        <div className="App">
            <div className="row margin-auto">
                <Header/>
                <Main/>
            </div>
        </div>
    )
  }

主文件.tsx:

public render()
    {
        return (
            <div id="main" className="col col-9-and-half no-padding-h vh-100">
                <div className="container-fluid no-padding-h">
                    <main>
                        <Switch>
                            <Route path='/home' component={Home} />
                            <Route exact={true} path='/' component={Home} />
                            <Route path="/matches" component={Matches} />
                            <Route path='/login' component={Login} />
                            <Route path='/sign-up' component={SignUp} />
                            <Route path='/contact-us' component={ContactUs} />
                        </Switch>
                    </main>
                </div>
            </div>
        )
    }

例如,当我尝试打开 www.mywebsite.com/sign-up 时,它会返回 404,但是如果我先打开 www.mywebsite.com 然后尝试访问 www.mywebsite.com/sign-up 它将正常工作。

2个回答

您的服务器中似乎没有重定向设置。要使单页 JavaScript 应用程序工作,您必须确保您的服务器为您index.html的所有路径提供服务

需要注意的一件事是,您必须在react-router. 这可以通过在路线定义的末尾添加<Route />不带pathprops的来实现。重要的是它在最后,以便在显示 404 之前用尽所有路线可能性

<Switch>
  <Route path='/home' component={Home} />
  <Route exact={true} path='/' component={Home} />
  <Route path="/matches" component={Matches} />
  <Route path='/login' component={Login} />
  <Route path='/sign-up' component={SignUp} />
  <Route path='/contact-us' component={ContactUs} />
  <Route component={NotFound} />
</Switch>

感谢SethWilliam Chou指导我回答,我做了以下 htaccess 配置来处理请求,现在一切似乎都正常:

<ifModule mod_rewrite.c>
    RewriteEngine On

    RewriteBase /

    RewriteRule ^index\.html$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule . /index.html [L]
</ifModule>