When I build web pages, I use the popular historical process of calling the home page index.htm and lets say I have products.htm and services.htm on the site too.
So within index.htm I have links that look like:
<a href="http://website.com/products.htm">products</a>
Recently I have noticed some developers putting their pages in separate folders each with an index.htm, so their links to the same kind of content as above would like like:
<a href="http://website.com/products/">products</a>
Can anyone explain the reasons/benefits of the latter?