>백엔드 개발 >PHP 튜토리얼 >내 서버가 .html 파일을 PHP로 처리하지 않는 이유는 무엇입니까?

내 서버가 .html 파일을 PHP로 처리하지 않는 이유는 무엇입니까?

DDD
DDD원래의
2024-12-05 08:47:11978검색

Why Isn't My Server Processing .html Files as PHP?

문제 해결: .html 파일이 PHP로 처리되지 않음

.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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.