My goal is to
- prevent the controller from reloading when using dynamic routes. For example, if I have a route defined as '/home/:param', and I navigate from '/home/path1' to '/home/path2', the controller should not be reloaded.
I attempted to accomplish this by including templates with ng-include. While it prevents the controller from reloading, the route URL stays the same. Is there an alternative method to achieve this?