Ubuntu apache2는 PHP 솔루션을 열 수 없습니다. 1. 구성 파일 httpd.conf를 엽니다. 2. 내용을 "AddType application/x-httpd-php .php..."로 수정합니다. 3. Apache 확장 패키지를 설치합니다.
이 기사의 운영 환경: ubuntu 16.04 시스템, PHP5 버전, Dell G3 컴퓨터.
ubuntu apache2에서 PHP를 열 수 없으면 어떻게 해야 하나요?
Ubuntu에서 Apache가 PHP를 구문 분석하지 않는 문제 해결
지난 이틀 동안 저자는 매우 빌어먹을 문제에 직면했습니다. Apache가 이전에는 잘 작동했지만 갑자기 작동이 중단되고 갑자기 중단되었습니다. 인터넷에서 미친 듯이 해결책을 찾고 있지만 대부분은 버전 php5이고 저는 버전 7입니다. 그런데 버전 5에 대한 해결책을 먼저 게시하겠습니다:
아파치 구성 파일 httpd.conf 수정
httpd.conf의 위치:AddType application/x-gzip .gz .tgz
AddType application/x-gzip .gz .tgz
在该行下面添加AddType application/x-httpd-php .php
再找继续找到:
DirectoryIndex index.html
,
把此行修改成DirectoryIndex index.html index.htm index.php
再找到:
#ServerName www.example.com:80
改成ServerName localhost:80
AddAddType application/x-httpd-php .php
Look 다시 계속해서 찾기:
DirectoryIndex index.html
, 이 줄을
DirectoryIndex index.html index.htm index.php
다시 찾기: 로 변경하세요. #ServerName www.example.com:80
이 ServerName localhost:80
sudo apt-get install libapache2-mod-php🎜이 단계에서는 PHP를 구문 분석하는 데 사용할 수 있는 Apache 확장 팩이 설치됩니다. 버전 7이나 5에 관계없이 적용할 수 있을 것 같습니다. 🎜🎜추천 학습: "🎜PHP 비디오 튜토리얼🎜"🎜
위 내용은 ubuntu apache2가 PHP를 열 수 없으면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!