I'm using mod_php on apache2 why are .php.html pages served as php ?
This breaks the phpdoc output (I have shorttags on and I will keep them on so it parses <?xml ver[...]?> as PHP)
How do I force .php.html pages to be served as HTML ?
I have
AddHandler application/x-httpd-php .php .php3 .php4 .php5
and in mod conf
<IfModule mod_php5.c>
AddType application/x-httpd-php .php .php3
AddType application/x-httpd-php-source .phps
</IfModule>