php不解析的排查步骤

php不解析的排查步骤

php不解析的排查步骤:
1. /usr/local/apache2/bin/apachectl -M 看一下有没有加载libphp5.so
2. 查看配置文件中是否有 
AddType application/x-httpd-php .php
3. 看看有没有加入index
<IfModule dir_module>
    DirectoryIndex index.html index.htm index.php
</IfModule>
4. 不要忘记重启apache
5. 还有一个不容忽视的问题,就是检查你的selinux是否开启
命令: getenforce 如果结果是 Enforcing 就说明是打开的
关闭: setenforce 0
还要在配置文件中配置一下 vi  /etc/selinux/config  把enforcing改为disabled

在测试的时候,可以在你的linux本机上测试  curl localhost/phpinfo.php   -I  看下状态码,看是否是200

05-08 15:24