I can't seem to find an answer online despite trying my best.
I recently set up hosting with StackCP and I have a domain through GoDaddy.
I am trying to remove the .html extension from my links. I want site.com/terms to take you to site.com/terms.html. I've read quite a bit and so far I've tried this
RewriteEngine on Options +MultiViews RewriteEngine on RewriteBase / RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([^/]+)/?$ /$1.html [NC, L] I've placed this in my .htaccess file in the root with index.html and the terms.html any help is appreciated.