Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ngRoute set base url for all routes

Tags:

angularjs

Is it possible to add a base url to all routes in an AngularJS app? Essentially changing its location on the server (kind of, if that makes sense... so it would be accessed not via / but via /something/).

To add some context, I am trying to place an existing Angular app behind some authentication such that the app would now be accessed at address say http://mysite/secure after successful login.

The problem is if I was to load the app at http://mysite/secure it works fine (the server will obviously serve up the correct page), but clicking any link would result in a page reload and route to http://mysite/#newpage instead of http://mysite/secure/#newpage.

Without adding /secure/ to all of the routes and link element is this possible? Cheers, sorry if that is not worded well.

like image 234
adamK Avatar asked Jul 21 '13 03:07

adamK


1 Answers

The location for the base href must have trailing /. For example:

<base href="location" /> 

will not work. It must be in this format:

<base href="location/" /> 
like image 62
Dennis Kiesel Avatar answered Sep 22 '22 21:09

Dennis Kiesel