First, let’s make sure we’re talking about the same thing: function App() { return ( <BrowserRouter> <Redirect from="/old-route" to="/new-route" /> {/* ... more routes etc... */} </BrowserRouter> ) } (Or however else you might accomplish the same thing in your ...