Redirect all posts urls from without .html to .html

You can edit your .htaccess directly or download an htaccess editor plugin for WordPress. Then write your rule similar to this:

Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.*) $1.html [nc]

For more detailed instructions