My angularJs App URL is opened via another application. URL to open my app looks like,
http://localhost:21770/App/IAnalytics?FromApp=abc#/PBIDefault
where FromApp is the parameter which indicates the source app from where angularjs app is called.
I would like to remove the FromApp=abc part from URL once my home page controller starts running.
I need to make sure by URL looks like, http://localhost:21770/App/IAnalytics?#/PBIDefault
How can I achieve the same using $routeProvider or $location ?