When using the aurelia.io framework router, what is the preferred method for reading and setting a query string?
For example, in the url: http://www.myapp.com/#/my
http://www.myapp.com/#/my
As per the latest configuration, the query string will not be retrieved if you didn't set the push state.
Set push state to true. and add base tag in index.html.
- index.html
config.options.pushState = true; - app.js -> configureRouter method.
config.options.pushState = true;