apache和php编译安装完成之后,在httpd配置文件里
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
下面添加两行
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .php5

然后添加默认首页,这里的顺序有优先级,在前面的优先显示
DirectoryIndex index.html index.html.var index.php

然后重启服务即可。

有时候重启服务会提示
正在启动 httpd:httpd: Could not reliably determine the server’s fully qualified domain name, using localhost.localdomain for ServerName
可以在配置文件里,把
ServerName www.example.com:80前面的符号#去掉
或者在其下面添加
ServerName 127.0.0.1:80
即可