.html 파일 내에서 PHP 코드를 실행하려고 하면 서버가 해당 파일을 구문 분석하지 못하는 문제가 발생할 수 있습니다. 파일을 PHP로. .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 사용
메서드 1:
AddType application/x-httpd-php .html .htm
방법 2(PHP5 전용):
AddType application/x-httpd-php5 .html .htm
방법 3:
RemoveHandler .html .htm AddType application/x-httpd-php .php .htm .html
사용 FilesMatch
<FilesMatch "\.html$"> ForceType application/x-httpd-php </FilesMatch>
이러한 대체 방법을 사용하면 서버에서 .html 파일을 PHP로 성공적으로 구문 분석할 수 있습니다.
위 내용은 내 서버가 .html 파일을 PHP로 처리하지 않는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!