Forum Moderators: phranque
You can use topr8's suggestion, or you can do a pretty simple rewrite in your .htaccess file (the method I prefer). My php pages get served up looking exactly like their original html counterparts and ranking is not an issue.
I use something like this in my .htaccess file
RewriteRule ^original.html$ http://www.mydomain.com/new.php [L]
That displays the original.html file name in the browser address bar while actually serving up new.php
The Apache forum [webmasterworld.com] would be a great place to learn more about this.