Closed
Description
Description
As soon as you try to access URL containing .
symbol the page cannot be displayed.
Steps to reproduce and a minimal demo of the problem
- Create router accepting parameter, e.g.:
{ path: '/data/:date', component: DataDetails, name: 'DataDetails' }
- Try accessing URL from your browser:
http://localhost/data/2016.05
Current behavior
An error is returned that page cannot be displayed (Error 404
)
Expected/desired behavior
Corresponding component is properly displayed.
Other information
- If you access this URL programmatically, e.g. using:
this._router.navigateByUrl('/data/2016.05');
it works fine and proper component is shown. - As soon as you remove
.
from the URL, e.g.:http://localhost/data/2016-05
it works fine as well.
Looks like the problem is cause by.
symbol.