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
For getting the absolute URL without parameters, I'm finding I need to pass inherit: false, eg:
inherit: false
$state.href('home', {}, {absolute: true, inherit: false})
Without inherit: false I was getting any/all params that may be present.