You can implement routerOnActivate()routerOnActivate() method on your route class, it will provide information about previous route.
routerOnActivate(nextInstruction: ComponentInstruction, prevInstruction: ComponentInstruction) : any Then you can use router.navigateByUrl() and pass data generated from ComponentInstruction. For example:
this._router.navigateByUrl(prevInstruction.urlPath);