-1

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 ?

Toma Tomov
  • 1,476
  • 19
  • 55

1 Answers1

0

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