Is it possible to develop an Angular.js application in a way that would be abstracted from the the web directory path in which it will be deployed?
I am trying to put an
Try setting a <base href="/sudirectory"/> in your <head></head>. That's what I needed to do to get mine working, IIRC
<base href="/sudirectory"/>
<head></head>
Word of caution: This will mess with any anchor tags that have href="#", as well as act as the root for image srcs and the like.