Как удалить расширение .html или любое расширение с помощью файла .htaccess?
Google - ваш друг :-)
Взгляни на Эта статья.
Код:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html
Кредит: http://eisabainyo.net/weblog/2007/08/19/removing-file-extension-via-htaccess/