Forum Moderators: coopster
I only want to change the home page at the moment, so severside instruction might not suffice - or will it.
The main issue is I do not want the site to take a hit in terms of PR.
Most people that use PHP, will use it on every page, but keep in mind that doing this will send ALL .htm files through the PHP processor. If your site has a lot of .htm files that don't contain any PHP script this is going to cause unnecessary server load.
AddType application/x-httpd-php .php
that tells the server to send all .php files through the PHP processor. You can add extensions to it like this:
AddType application/x-httpd-php .php .htm .html
William.