I have a static website hosted on GitHub Pages and I am trying to remove the .html extension from the URL.
I understand that when using Jekyll, there is something called Permalink to do so. The thing is that I am not using Jekyll but only pure HTML & CSS.
I've also tried to create an .htaccess file at the root of my folder, but it doesn't seem to work on GitHub Pages.
I only have three html pages: index.html, projects.html and about-me.html.
When redirecting to the index.html, I can write <a href="/"></a> and then it'll remove the .html from the URL, but that's only specific to the index.
Any other way to do it for the other html pages?
