Let's say I have this folder structure on my local server:
root/
index.html
some/
folder/
index2.html
My local server will automaticly load .html file in given directory. Should I point to index2.html from index.html like this:
<a href="some/foler">link</>
or like this:
<a href="some/foler/">link</>
Which way is right?