I enter url http://localhost/HTMLUS12706?key=1234
which redirects to http://localhost/HTMLUS12706/?key=1234#/index
.
Now I need to remove ?key=1234 from url and update url to http://localhost/HTMLUS12706/#/index
.
I have already tried these
$location.search('key', null);
$location.url($location.path());
delete $location.$$search.key;
$location.$$compose();
$location.$$search = {};
$location.search({});