I have taken over an html website and am adding some php to every page, rather than renaming all the pages and having a whole heap of 301 redirects I decided to use;
AddHandler application/x-httpd-php .html .htm
Which worked fine on my local machine but not when I uploaded the changes to the live server (Hostgator), after a bit of searching I discovered that I needed to use;
AddHandler application/x-httpd-php5 .html .htm
This works fine but I would rather have both .htaccess files the same so I don't accidentally change something on the live site (or vice versa).
I am sure I can set up my development server to use the same syntax as the live server (they are both running php5 but my development server only has php5, there is no choice). But I don't know where to look to change this setting, is it in httpd.conf? or perhaps in php.ini?
Can anyone point me in the right direcetion?
Thanks