I'm using angular-ui-router with HTML5 mode set to false - I use hashbang. When user hits mydomain.com
I need to redirect him to mydomain.com/#/welcome
, how can I do that?
I've looked through ui-router source code and when mydomain.com
is hit the $location.path()
is ""
so this approach .when("", "/welcome")
doesn't work since .when(""
translates into this /^$/
regex and when ""
is tested against this regex null
is returned.