I wanted to be able to change the address\' URL without changing the state, as to prevent rerendering. From my search, ui-router currently does not provide this
ui-router
You should use $state.href().
$state.href()
To get the absolute URL you can then use:
$state.href('user.home.view', {}, {absolute: true});
To get the URL with the parameters in place you need to add them as the second argument