2
app.config(function($locationProvider) {
     $locationProvider.html5Mode(true);
});                                                            

i am using this in one of my page ,But when that page load in ie8 it redirect to home page. Other browser working fine (Stay on that page).

i am using Angularjs 1.2.17

doniyor
  • 36,596
  • 57
  • 175
  • 260
Himanshu Bhuyan
  • 306
  • 2
  • 8
  • 20

1 Answers1

1

IE8 doesn't work with html5mode in angular. You've got to set it to html5mode(false); and use the /#/ to get it to work.

Ryan
  • 3,153
  • 2
  • 23
  • 35