Dépannage : le serveur ne parvient pas à interpréter le HTML comme PHP
Problème :
Un utilisateur rencontre un problème où le serveur n'interprète pas les fichiers HTML comme PHP malgré l'utilisation du code suivant dans le .htaccess fichier :
Options +Includes AddType text/html .htm .html AddHandler server-parsed .htm .html AddType application/octet-stream .vcf AddOutputFilterByType DEFLATE text/html text/htm text/plain text/css text/php text/javascript application/x-javascript
Solutions :
AddType application/x-httpd-php .html .htm
AddType application/x-httpd-php5 .html .htm
RemoveHandler .html .htm AddType application/x-httpd-php .php .htm .html
<FilesMatch "\.html$"> ForceType application/x-httpd-php </FilesMatch>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!