I made an application with angularjs, in the ngroute I have
var appLogin = angular.module('appLogin', ['ngRoute', 'ngResource'])
// Declared route
.config(['$routeProvider', function($routeProvider) {
// alert(JSON.stringify($routeProvider));
$routeProvider.when('/', {
templateUrl: 'views/loginView.aspx',
controller: 'loginController'
})
}]);
The issue is that when executing it, it directs me to http://localhost:51384/login.html#!/
Could someone explain to me what is !
? I understand that the #
is because the parameters for navigation go from there, but what is !
? Can you remove it?
In PHP I only generated the #
, thanks