문제 해결: 서버가 HTML을 PHP로 해석하지 못함
문제:
사용자가 직면하는 문제 다음 코드를 사용했음에도 불구하고 서버가 HTML 파일을 PHP로 해석하지 못하는 문제 .htaccess 파일:
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
솔루션:
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>
위 내용은 내 서버가 HTML 파일을 PHP로 해석하지 않는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!