Попробуйте:
RewriteEngine On
RewriteCond %{REQUEST_URI} !\.php$
RewriteRule ^(.+\-[^\-]+)$ $1.php [PT]
Приведенные выше правила будут содержать URI, включающий только один -
или более, поэтому:
/test-my-hyphens
будет /test-my-hyphens.php
/test-my-hyphens-again-or-not
будет test-my-hyphens-again-or-not.php
Примечание:
\whatever will not be accpeted
\whatever- will not be accpeted