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的索引
Atas ialah kandungan terperinci php文件不解析. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!