Access ionic 3 page outside

I am building an PWA application using Ionic 3 (without cordova plugin) and now i need to implement a recovery password feature. To do that i need to send an email to user with a link, when the user click in link i need to redirect him to a page with a token to recovery that password.

I have tried to implement this feature using IonPage segment, as you can see below.

@IonicPage({
  segment: 'token/:token'  
})

Calling the follow Url http://localhost:8100/#/token/mytoken i’m redirect to root page (login)

How can i do that ?