AngularJS “#!” on url
someone knows what "#!" Means. on the url? I was working until then this appears,I had a "#" always in the url and would like to keep it that way. Currently routing is not working anymore,probably because of this url change. It's part of a business project, i don`t want to change to html5Mode. I tried to use: $locationProvider.hashPrefix(""); Even correcting the url in this way routing is having problems Ajasra Thats called hash-bang . To fix this use : angular.module('yourApp', []) .config(['$locationProvider', function($locationProvider) { $locationProvider.hashPrefix(''); }]); Adding