It seems that "cptbc_105" is the identifier of your carousel. The page URL changes because you use href = "# cptbc_105" on the left and right buttons. Just change the "href" attr to "data-target" attr and each of them will work correctly.
EDIT:
<a class="right carousel-control" href="#cptbc_105" role="button" data-slide="next"> <span class="sr-only">Next</span> </a>
TO:
<a class="right carousel-control" data-target="#cptbc_105" role="button" data-slide="next"> <span class="sr-only">Next</span> </a>
source share