apache가 php 파일을 구문 분석할 수 없습니다
I Baidu가 오후 내내, 근본 원인은 php 확장자가 누락되었기 때문입니다: mod_php
설치 후 Apache를 다시 시작하세요. (권장 학습: 초급에서 마스터까지의 PHP 프로그래밍)
yum install mod_php
Other Solutions
발견:
AddType application/x-gzip .gz .tgz
아래에 추가:
AddType application/x-httpd-php .php //添加支持对php脚本解析
발견:
<IfModule dir_module> DirectoryIndex index.html </IfModule>
중간 줄을 다음으로 변경:
DirectoryIndex index.html index.htm index.php //增加对php的索引
위 내용은 PHP 파일이 구문 분석되지 않았습니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!