0

it seems like angular is transforming my url path every time I use a hash(#) in the path. For example, if I type in the path:

http://localhost:6871/#angular

When I hit enter it transform into:

http://localhost:6871/#!#angular

Because of this issue my routes can never be reach. Has anyone ran into this before? Any suggestions would be great. Thank you in advance!

Ron T
  • 397
  • 1
  • 4
  • 22
  • Possible duplicate of [angularjs 1.6.0 (latest now) routes not working](http://stackoverflow.com/questions/41211875/angularjs-1-6-0-latest-now-routes-not-working) – georgeawg Jan 08 '17 at 09:50

1 Answers1

0

Try adding the following after route configurations:

$locationProvider.hashPrefix(' ');
Sreehari S
  • 388
  • 1
  • 12