Change the URL's on your site to look like what you want them to be, then do something along the lines of...
Code:
RewriteCond %{REQUEST_URI} !-f
RewriteCond %{REQUEST_URI} !-d
RewriteRule ^([^/])/?$ /$1.php [L]
RewriteCond %{REQUEST_URI} !-f
RewriteCond %{REQUEST_URI} !-d
RewriteRule ^([^/])/([^/])/?$ /$1-$2.php [L]