RewriteEngine on Rewriterule ^(.*).htm $1.php
This works fine when i try to access every php page
But how could i make it RewriteRule
RewriteRule
Alternatively to Jan's answer:
RewriteRule ^/about/?$ /about.php
will rewrite it whether they remember the final / or not.
/