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

내 서버가 HTML 파일을 PHP로 해석하지 않는 이유는 무엇입니까?

Barbara Streisand
Barbara Streisand원래의
2024-12-03 12:54:10284검색

Why Isn't My Server Interpreting HTML Files as PHP?

문제 해결: 서버가 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:
    수정해 보세요. 특정 파일을 대상으로 하는 AddType 지시어 확장:
AddType application/x-httpd-php .html .htm
  • PHP 버전 고려:
    PHP5의 경우 AddType 지시어를 적절하게 수정하세요.
AddType application/x-httpd-php5 .html .htm
  • 삭제 처리기:
RemoveHandler .html .htm
AddType application/x-httpd-php .php .htm .html
  • FilesMatch 지시어:
<FilesMatch "\.html$">
    ForceType application/x-httpd-php
</FilesMatch>

위 내용은 내 서버가 HTML 파일을 PHP로 해석하지 않는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

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