lamp環境無法解析php的解決方法
1、/usr/local/apache/bin/apachectl -M //查看有沒有載入php5_module(shared)模組;
2、在/usr/local/apache2/modules/ 目錄下,查看有沒有載入libphp5.so模組;
3、複習編譯的配置檔案是否有誤:/usr/local/apache2/conf/httpd.conf
修改apache的設定檔 httpd.conf
vim /usr/local/apache2/conf/httpd.conf
在httpd.conf中找到:「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” 保存后退
4、使用指令查看主設定檔是否有誤:/usr/local/apache2/bin/apachectl -t
5 、編譯安裝apache時,建議加上兩個參數(以後用到就不需要再編譯):
--enable-modes-shared=most //编译加载最多的模块 --enalbe-modes-shared=all //编译加载所有模块
推薦教學:PHP影片教學
#以上是lamp環境無法解析php環境的詳細內容。更多資訊請關注PHP中文網其他相關文章!