All my route in app.js working fine, on refreshing page.
I have to create a route with special params like this :
http://localhost:9000/bureaux-a-louer/rhone/lyon/69003/filters?lat=45.7593054&lng=4.841594600000008
From the homepage to this route it works well , i can get all parameters. But when i refresh this i got
Cannot get /bureaux-a-louer/rhone/lyon/69003/filters?lat=45.7593054&lng=4.841594600000008
Looks like the dot parameters breaks it... because when i put a comma in lat/lng parameters it's working fine... If someone have an idea to fix it.
It's an Angular application on 1.5.7 , with ng route param like this :
.when('/bureaux-a-louer/:cp/:city/:zipcode/:filters', {
templateUrl: 'views/search/search.html',
controller: 'SearchCtrl',
controllerAs: 'search',
authorized: false,
footer: false,
skipAuthorization: true
})
And i use NodeJS with grunt