Heim >Backend-Entwicklung >PHP-Tutorial >Warum interpretiert mein Server HTML-Dateien nicht als PHP?
Fehlerbehebung: Server interpretiert HTML nicht als PHP
Problem:
Ein Benutzer stößt auf Ein Problem, bei dem der Server HTML-Dateien nicht als PHP interpretiert, obwohl der folgende Code in der .htaccess-Datei verwendet wird Datei:
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
Lösungen:
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>
Das obige ist der detaillierte Inhalt vonWarum interpretiert mein Server HTML-Dateien nicht als PHP?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!