Guilherme Miranda
Guilherme Miranda

Reputation: 1082

html5Mode doesn't link to base url

I'm using AngularJS 1.3.2 with html5Mode on. My app is hosted on http://localhost/app

My base is set to

<base href="/app/">

I'm trying to create a link to the app root, but when i do

<a ng-href="/">Home</a>

it points me to http://localhost, but i need it to point me to http://localhost/app

Upvotes: 0

Views: 738

Answers (2)

Stephen Lautier
Stephen Lautier

Reputation: 3335

Another solution seems to be to not use a slash at all (not sure which is better) <a href="heroes">Heros</a> Rather than

<a href="/heroes">Heros</a>

Upvotes: 0

Guilherme Miranda
Guilherme Miranda

Reputation: 1082

Solution is:

<a ng-href="./">Home</a>

Upvotes: 4

Related Questions