I have set the Routes as below in app-routing.module.ts
{ path: 'token/:token', component: AppComponent }
The destination URL is
localhost:4200/token/23s893rhjkdsdfhjk234=
But when I enter this url into browser and get the final url is
localhost:4200/token/23s893rhjkdsdfhjk234
the '=' is missing,
could I know why the '=' is ignored and how to keep it in url?
Thanks