I just noticed that for some reason, I get this:
http://localhost/ReportsWeb/#!/
instead of this: http://localhost/ReportsWeb/#/
exclamation sign is added... why, any ideas, cant figure the reason why its where.
Obviously, if I navigate to http://localhost/ReportsWeb, the URL becomes http://localhost/ReportsWeb/#!/
UPDATE
Thanks guys for the help.
These two options work fine:
1)
set $locationProvider.html5Mode(true)
add <base href="/ReportsWeb/">
2)
set $locationProvider.html5Mode(false);
set $locationProvider.hashPrefix('');
Which option is "more correct" way to handle this?
To me the second option looks right, I dont need to make any more changes to make my project work. In first case, I need to set base element, but angular routing wont work, I probably have to change all "/#/Path" to exclude the hash tag. So, I'll take option #2 )
thanks