I have the following URL: localhost.com:1234/?param1=abc¶m2=def
Route.config = [
{ path: 'first', component: 'firstComponent' },
{ path: 'second', component: 'secondComponent' }
]
While app initializes the URL gets replaced to localhost.com:1234/#/first
.
How I can prevent this, so that my redirect url will be localhost.com:1234/?param1=abc¶m2=def#/first
?