What do you guys think is the best way to link to other website pages of a website, in order to remove the .html extension visible in website URL?
Assume I have the following pages:
- index.html
- page1.html
- page2.html
- pagex.html
What is the best way to link to these pages?
<a href="page1.html">page1</a>
creating subfolders named "page1", "page2", and so on, with individual "index.html" files, and referral in the form of:
<a href="/page1">page1</a>
Use
<a href="page1">page1</a>
and set .htaccess toMultiViews