I have a link that takes me to another section of the same page like this:
<a class="nav-link" href="#about">About</a>
that takes me here:
<section class="page-section bg-primary" id="about"></section>
Whenever I click on the link, the search bar shows up as http://mywebsite.com/home/#about
. I want it so that whenever an anchor link is clicked it takes me to that section in the page but instead of having a hash in the search bar I want it nice and clean with /
instead of #
, like http://mywebsite.com/home/about
. How can I achieve this?