I have an AngularJS application that is using ui-router. All is working okay but I would like to have a user registration confirmation screen accessed like this:
<
It's quite simple actually, but requires work at server-side: the server must be configured to serve the index.html page for the path /Auth/confirmation (and for all the other bookmarkable URLs of your app).
Once that is true, a user going to /Auth/confirmation will thus download the index.html file, which will start the angular application. The ui-router module will analyze the location, load the corresponding state, and display the corresponding view.