Como redirecionar a extensão html usando o htaccess?

No momento, os dois links mostram a mesma página:

http://www.example.com/podcast/episode.html
http://www.example.com/podcast/episode

O que eu quero fazer é redirecionar todos os links do tipo html para os links não-html.

Eu sei que isso pode parecer simples de fazer com o htaccess, mas não está funcionando para mim.

Aqui está o meu código htaccess até agora:

    RewriteEngine On
    RewriteBase /

    #removing trailing slash

    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)/$ $1 [R=301,L]

    #non www to www

    RewriteCond %{HTTP_HOST} !^www\.
    RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

    #shtml

    AddType text/html .html
    AddHandler server-parsed .html

    #html

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^([^\.]+)$ $1.html [NC,L]

    #index redirect

    RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.html\ HTTP/ 
    RewriteRule ^index\.html$ http://example.com/ [R=301,L]

questionAnswers(1)

yourAnswerToTheQuestion