I can\'t remove the # symbol in IE9. I searched for an answer but didn\'t find a fix.
This always redirects to
http://myhost.com:8080/#/website/
Using window.location.hash = '/' solved my problem.
window.location.hash = '/'
if (window.history && window.history.pushState) { $locationProvider.html5Mode(true); } else { window.location.hash = '/' // IE 9 FIX $locationProvider.html5Mode(true); }