React Router routes not working on nginx create-react-app
问题 I'm using "react-router-dom": "^4.2.2" . If I test on localhost:3000/second it works perfectly. When I upload this on ubuntu server with nginx and I try www.website.com , it works . When I try to use www.website.com/second it gives me 404 not found . I'm using create-react-app . app.js class TestRoutes extends React.Component{ constructor(props){ super(props); } render(){ return(<React.Fragment> <BrowserRouter> <Switch> <Route exact path='/' component={MainPage}/> <Route path='/second'