Serve another(standalone) page or static file in website built with react
This should work: const reload = () => window.location.reload(); <Router> // all your routes.. … // Your special routes.. <Route path=”/sitemap.xml” onEnter={reload} /> <Route path=”/something.html” onEnter={reload} /> </Router> So, I think this should be pretty clear what it does 😉 Update: if this is an option you can simply put target=”_blank” attribute in your <Link> … Read more