简体   繁体   中英

React app returning 500 Internal Server Error

I have a react app, created using create-react-app.

After I run npm run build , and deploy the app as a static site, everything works except when I refresh the page on a route other than the index, it fails with a 500 internal server error .

Below is the code for my router. Using react-router.

<Router history={browserHistory}>
  <Route path="/">
      <IndexRoute component={Login}/>
      <Route path="/dashboard" component={Dashboard}></Route>
      <Route path="/profile" component={Profile}/>
</Router>

Any help appreciated.

When you're visiting a route of your app directly, eg via https://myapp.com/route/123 Apache tries to map that URL to a file in the public folder. In this case it looks for /route/123.html which obviously doesn't exist. To avoid that, we have to tell Apache to redirect all requests to our index.html so our app can perform some routing magic for that URL. To tell Apache to redirect requests to index.html where our app lives, we have to modify the .htaccess file. If there is no such file in your app's folder yet, just create it.

Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.html [QSA,L]

for more information check this out.

您的服务器的路由应该与 react-router 中定义的路由匹配,如果它们不匹配,那么您将收到 500 错误。

Can you share some error log screenshot or copy-paste ? 500 is a server-side error, obviously. Maybe your routes on server are not matching the url pattern. Or some express server route function threw an exception.

Please, provide some logs from client and\or server.

UPD : Just mentioned the "static site" thing. Didn't understand what exactly do you mean by that. For me it's no server at all.

Still i'm pretty sure that your server has no routes configured.

Server knows what is "/"("index.html"). But there are no routes configured for, say, "/potatoes".

In express server you would do something like:

app.get('*', function(req, res){
  res.sendFile(__dirname + '/index.html');
});
  • meaning, ALL GET REQUESTS to your server(app) will lead the user to same "index.html".
Create a file .htaccess file in react js root folder where index.html

and add the below code

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

Save the .htaccess file and enjoy your working

This one works nice for me :

  # React Router
  RewriteEngine On
  RewriteBase /
  RewriteRule ^index\.html$ - [L]
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-l
  RewriteRule . /index.html [L]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM