In my web app, in addition to the actual app-related pages (index and output), I have a couple of other pages, but these pages are static. For example, one page is "Process" and another one "Contact". In the nav bar for all the HTML files, I want to have links to these pages. I am serving these pages as <li><a href="./static/process.html">Process</a></li>
and <li><a href="./static/contact.html">Contact</a></li>
.
When clicked on these links from index page, I can get to either of these pages - no problem. However, if I am on Process page and click on the link to Contact, I get an error, because the address bar shows that it is trying to access http://localhost:5000/static/static/contact.html
. I think my way of adding links to these static pages may be wrong. What's the best and right way of achieving this?