Wie kann die Apache-Konfiguration angepasst werden, um sicherzustellen, dass auch Dateien mit der Endung .html vom PHP-Parser verarbeitet werden?

To ensure that files with the .html extension are processed by the PHP parser, you can modify the Apache configuration to include the AddType directive for the .html extension. This tells Apache to treat .html files as PHP scripts and parse them accordingly. ```apache <IfModule mod_php7.c> AddType application/x-httpd-php .php .html AddHandler application/x-httpd-php .php .html </IfModule> ```