Say you have (www.Yourdomain.com/index.html) and you want it to say (www.Yourdomain.com/index)
Well, here is how to do that.
Just add this to your .htaccess
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html
No credits to...