I was trying to get rid of the index.html in my url.
.htaccess
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://saturnstudios.org/$1 [R,L]
Everytime I load the website https://www.saturnstudios.org/index I get the error Error 404 - Not Found The document you are looking for may have been removed or re-named. Please contact the web site owner for further assistance.
Even though the documents are named right.
<h1 class="nav-link"><a href="index">Home</a></h1>
</li>
<li>
<h1 class="nav-link"><a href="about">About</a></h1>
</li>
<li>
<h1 class="nav-link"><a href="contact">Contact</a></h1>
Any ideas of how to fix it?