.html 파일에서 해결되지 않은 PHP 구문 분석
PHP 코드를 .html 파일에 통합하려고 할 때 서버가 다음을 수행하는 것으로 관찰되었습니다. 코드를 안정적으로 구문 분석하지 않습니다. 다음 .htaccess 파일 구성은 PHP 코드 구문 분석을 용이하게 해야 합니다.
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
PHP 버전 지정(PHP5):
AddType application/x-httpd-php5 .html .htm
네이티브 .html 비활성화 처리기:
RemoveHandler .html .htm AddType application/x-httpd-php .php .htm .html
FilesMatch를 사용한 강제 애플리케이션 유형:
<FilesMatch "\.html$"> ForceType application/x-httpd-php </FilesMatch>
위 내용은 내 .html 파일에서 해결되지 않은 PHP 구문 분석 문제를 어떻게 해결할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!