So, I have a standard bootstrap one page site. I am using django as the backend. for each section of the site, I use the html id I give to it to navigate to it from the navbar.
the only problem is that I cannot figure out how to clean the pound sign from the url. I still want something like:
example.com/contact
navigate to the contact section automatically, however, right it looks like:
example.com/#contact
How do I go about changing this? Is it something I need to add to the django urls.py file?