I am building simple HTML pages and I want to use this kind of linking in the menu (each subpage is a index.html file in a subfolder...).
<a href="/" title="Home">Home</a>
<a href="/about">About</a>
<a href="/faq">FAQ</a>
<a href="/contact">Contact</a>
This works fine on the actual domain. But when I build the website in my localhost this linking wont work. Any ideas of how I can make it work on both places (without changing the linking)?
Maybe there is something I can change in the host file? (I'm using Windows)