2
Hi Lana,
The last two days I've been acquainting myself with a technique called mod_rewrite on a Apache server.
You should have a look what you can do with it.
I'm telling you because there's actually a way where you could keep your php document but "transparently" show the .htm file.
So if you have a page called mysite.com/sponsors.htm that the user types into their address bar...they would really be looking at the mysite.com/sponsors.php page.
It's a little tricky to understand first.
Here's an example that you could add in a .htaccess file inside the folder where your "sponsors" page is located at.
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^sponsors.htm$ sponsors.php [L]
You will have to play with the RewriteRule to make it work.
Just a thought...