I have app with sidebar menu. I am on second page and I am calling controller function which redirect me to first page using:
$state.go(\'app.home\');
Use $ionicHistory in your controller before calling $state.go('app.home').
$state.go('app.home')
.controller('HomeCtrl', function($scope,...,$ionicHistory) { ... $ionicHistory.nextViewOptions({ disableBack: true }); $state.go('app.home'); });