I have a request to add in another URL parameter that directs to a state that I already have set up. For efficiency purposes, I\'m trying to see if I can add multiple URLs t
You use params:
https://github.com/angular-ui/ui-router/wiki/URL-Routing
.state('site.link', { url: '/{link}' .. }
so when you use the same state like this
$state.go('site.link', {link: 'link1'}) $state.go('site.link', {link: 'link2'})