# mod_rewrite starts here

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-d

# Check for file in the directory with .html extension

RewriteCond %{REQUEST_FILENAME}\.html -f

#GOT .html extension

RewriteRule ^(.*)$ $1.html [NC,L]