Currently, I am utilizing ui-router for the routing in my Angular App. The structure of my page consists of three ui-views within a single HTML document as shown below:
<html>
<div ui-view="header"></div>
<div ui-view="content"></div>
<div ui-view="footer"></div>
</html>
When an element in the header is clicked, I need to redirect ui-view="content" to ui-view="content2", while keeping the header and footer unchanged. Is there a way to accomplish this task?