I uploaded react.js application to server. I\'m using nginx server. Application is working fine. But when I go to other page & refresh, site is not working. It\'s showin
For me the solution was:
location / { root /var/www/myapp/build; index index.html; try_files $uri /index.html$is_args$args =404; }