It’s not really clear what you want to achieve.
The following will serve about.php for all requests to http://example.com/about/
. The user won’t notice anything. Is this what you want to do?
RewriteEngine On
RewriteRule ^about/$ about.php
solved How to change my url to user friendly url [duplicate]