As I was working with HTML and using AngularJS ng-controller, I encountered an error in the URL where a slash appeared. For example, localhost:8080/test/#/m1. Can someone please provide guidance on how to resolve this issue?
<style>
a{ }
.target { }
.target > div { display:none; }
.target > div:target{ display:block; }
</style>
<div>
<a href="#m1">fea1</a>
<a href="#m2">fea1</a>
<div class="target" ng-controller="createUpdateReadDeleteCtrl">
<div id="m1">content m 1</div>
<div id="m2">content m 2</div>
</div>
</div>