I have an Apache 2 with PHP 5 (module) running locally for development. It works just fine, but my webhoster requires PHP 5 files to have the extension .php5 (.php files being interpreted as PHP 4

). Unfortunately, I have not been able to tweak my Apache to correctly process those files. I have the line
AddType application/x-httpd-php .php .php3 .php4 .php5
in my httpd.conf, but no luck - instead of to the PHP interpreter, .php5 files are sent straight to the browser, resulting in a download dialog
Any help on fixing this would be appreciated, as I'm not keen on keeping my files as .php and having to rename them to .php5 every time I want to upload them.