问题 I am having one use case. My main react application (container) is loading (mounting) another react child application (module), which is implemented using react-router . When the route changes in the child application, it is also changing the main application URL. Is there any way to change the route without changing URL? I know this is possible without react-router in the child application, by just changing component based on state. But how can we achieve the same with react-router ? It