A quick tutorial showing how to remove “.html” suffix from the url of your website
- Go to “Settings” (it’s under “System” section), make sure to set:
- URL suffix: empty the field
- Rewrite URLs: checked
- Disable page alias usage: unchecked
Open the “.htaccess” (it is located into the root of your website) and replace the line containing
RewriteRule .*\.html$ index.php [L]
with:
RewriteRule .* index.php [L]
That’s all.