my current iFrame page is loaded with a index.html#/myPage it works nicely under Chrome or Safari, but not with IE 11
I found this solution on SO : add a / before the # (index.html/#/myPage) and it will solve your problem
it looks so simple, but in my case it produces a 404 Page not found
it seems that my route provider doesn't support the / before the #, why ?
Routing code :
appSkeleton.config(
function ($routeProvider) {
$routeProvider.
when('/', {
template: '<skeleton-manage></skeleton-manage>'
})
.when('/skeletonManage', {
template: '<skeleton-display-and-manage></skeleton-display-and-manage>'
})
.when('/employeeManage/:employeeId/:displayMode/:idItemClick?', {
template: '<employee-display-and-manage></employee-display-and-manage>'
})
.otherwise({
redirectTo:'/'
});
}
);
The application works on a Node.JS server