I`ve used this handler in php version 5> . The PHP in all the htm/html was parsed correctly. Since I moved to php 7 this handler stopped working.
AddHandler application/x-httpd-php .html .htm
Is there any particular reason for that ?
I`ve used this handler in php version 5> . The PHP in all the htm/html was parsed correctly. Since I moved to php 7 this handler stopped working.
AddHandler application/x-httpd-php .html .htm
Is there any particular reason for that ?
Instead of:
AddHandler application/x-httpd-php .html .htm
you could try to provide the version as below for 7.0:
AddHandler application/x-httpd-php70 .html .htm
Or for 7.3:
AddHandler application/x-httpd-php73 .html .htm