Why is Apache executing .php.html files as PHP? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T13:03:27Zhttp://stackoverflow.com/feeds/question/189780http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/189780/why-is-apache-executing-php-html-files-as-php1Why is Apache executing .php.html files as PHP?davr2008-10-10T01:10:28Z2008-10-10T09:13:00Z
<p>I have an odd problem...I'm using a documentation generator which generates a lot of output like docs/foo.php.html. It's XHTML, and thus contains <code><?xml...></code> tags at the beginning of file. The problem is, Apache has somehow decided to run it through the PHP interpreter, even though ".php" appears in the middle of the filename, and not at the end. This in turn triggers a PHP error, because it sees "<code><?</code>" as the command to start executing PHP code, and immediately gets confused by the "<code>xml...</code>" which follows it.</p>
<p>How do I configure Apache to ONLY execute .php files, and not .php.html files? The string "php.html" does not appear explicitly anywhere in my Apache config files. There is a line "<code>AddHandler php5-script .php</code>", but I don't see how that would also include ".php.html" files.</p>
http://stackoverflow.com/questions/189780/why-is-apache-executing-php-html-files-as-php/189810#1898104Answer by John Millikin for Why is Apache executing .php.html files as PHP?John Millikin2008-10-10T01:20:15Z2008-10-10T01:20:15Z<p>You could disable PHP's shorttags -- this is the recommended way to mix PHP and XML.</p>
<p><a href="http://us.php.net/ini.core" rel="nofollow">http://us.php.net/ini.core</a></p>
<pre><code>short_open_tag = 0
</code></pre>
http://stackoverflow.com/questions/189780/why-is-apache-executing-php-html-files-as-php/189844#1898440Answer by dragonmantank for Why is Apache executing .php.html files as PHP?dragonmantank2008-10-10T01:43:15Z2008-10-10T01:43:15Z<p>Are .html files listed as being allowed to be parsed as PHP? I've seen some shared hosts set .html files to be usable as a valid PHP extension which may also be catching your .php.html files.</p>
http://stackoverflow.com/questions/189780/why-is-apache-executing-php-html-files-as-php/190221#1902214Answer by alexandrul for Why is Apache executing .php.html files as PHP?alexandrul2008-10-10T05:27:18Z2008-10-10T09:13:00Z<p>The problem seems to be in <a href="http://httpd.apache.org/docs/2.2/mod/mod_mime.html" rel="nofollow">mod_mime</a>.</p>
<p>Quote from the Apache mod_mime documentation page:</p>
<blockquote>
<p>If you would prefer only the last dot-separated part of the filename to be mapped to a particular piece of meta-data, then do not use the Add* directives. For example, if you wish to have the file foo.html.cgi processed as a CGI script, but not the file bar.cgi.html, then instead of using AddHandler cgi-script .cgi, use</p>
<p><code><FilesMatch \.cgi$></code></p>
<p><code>SetHandler cgi-script</code></p>
<p><code></FilesMatch></code></p>
</blockquote>
<p>Also, you can google for <code>apache mod_mime "multiple extensions"</code></p>