How to parse html as php

try add to htaccess:
<FilesMatch "\.(html|htm)$">
AddType x-httpd-php .html .htm
AddHandler x-httpd-php .html .htm
</FilesMatch>
 
Not working but following is
<FilesMatch "\.(html|htm)$">
AddHandler application/x-httpd-php .htm .html
AddType application/x-httpd-php .htm .html
</FilesMatch>
 
<FilesMatch "\.(html|htm)$">
AddHandler application/x-httpd-php .htm .html
AddType application/x-httpd-php .htm .html
</FilesMatch>

This code always using php 7.2 how would i use it for php 5
 
look attentively instructions:
PHP versions described in handler name
 
Back
Top