Hocam şu şekilde bir güncellermisin

RewriteEngine On

# .php uzantısını için
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^([^.]+)/$ $1.php [L]

# .html uzantısını için
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^([^.]+).html$ $1.html [L]