Get previous paths from ReactRouter.browserHistory
Actually you can't.
But you can try storing a list in browserHistory
state and pushing new path in it when you redirect.
let history = this.props.location.state.history;
history.push(this.props.location.pathname)
browserHistory.push({
pathname: '/yourpath',
state: { history: history }
})
in this way you should find all your history in this.props.location.state.history