Given a route config
@RouteConfig([
new Route({ path: '/app/index.html', name: 'default', redirectTo: ['/View1] }),
new Route({ path: '/view1/:param1/:param2/', name: 'View1', component: View1Component })
])
and param1, param2 being passed in as query parameters like so
http://legacy.com/app/index.html?param1=10¶m2=15
how would I go about passing these parameters in the above redirectTo so that I'd end up with
http://legacy.com/app/#/view1/10/15
Is this possible to begin with?