I have 1 angular application with a base-href set to /a/b/.
So, in my dist folder, there is a html file with <base href="/a/b/">.
This way, the browser can resolve that a image link to assets/images/logo.png is in fact located on domain.com/a/b/assets/images/logo.png.
So my application runs on domain.com/a/b/index.html.
Problem:
Now I would also like to run the same application on domain.com/a/b/c/index.html. So besides the previous.
Also here assets/images/logo.png is located on domain.com/a/b/c/assets/images/logo.png. (watch the /c/ there).
I can get this to work, although, I really would like to build my application once and publish it once. And then deploy it twice (/a/b/ and /a/b/c/).
So in fact my question is, can I configure this base-href after deploying it in the given folders on my apache server? Is there a run-time option? Can it infer it's base-path from the directory the files are in? Or, is there a command to change the value in index.html?