I would like to get some advice on the correct structure of my AngularJS app.
This is the current structure of my project within the root directory:
As you can see, my index.html is inside a sub-directory www.
The problem is that when I deploy my app to my server, the www is included in the URL so that my URLs look like this: www.myWebsite.com/www/home instead of like this: www.myWebsite.com/home.
I've seen several projects with the same structure (where index.html is not within the root directory) but not having the same issue with the URLs.
Any help would be great appreciated. Thanks!

index.htmlis, what actually matters is where your "bundler" places theindex.htmlin the bundle and where you place your bundle at the server.templateUrlare also not retrieved. But apart from that everything else is working fine. I can navigate the website and see contents.