apache無法解析php檔
#我百度了一下午,根本原因漏了一個php擴充:mod_php
安裝完重啟apache就好了。 (推薦學習:PHP程式設計從入門到精通)
yum install mod_php
其他解決方案
找到:
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中文網其他相關文章!