标签:config 配置 modules 检查 识别 mod index centos res
1:去php官网下载对应版本的php包
2:解压php包
3:进入解压后的php包
./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql
4: make &make insatll
5 进入到解压的源码包将配置文件复制到你所安转的目录 cp php.ini-development /usr/local/lib/php.ini
6:编辑 httpd.conf 文件以调用 PHP 模块。LoadModule 达式右边的路径必须指向系统中的 PHP 模块。以上的 make install 命令可能已经完成了这些,但务必要检查
LoadModule php5_module modules/libphp5.so
在AddType application/x-gzip .gz .tgz下面添加:
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
在DirectoryIndex增加 index.php,以便Apache识别PHP格式的index
<IfModule dir_module>
DirectoryIndex index.html index.php </IfModule>
标签:config 配置 modules 检查 识别 mod index centos res
原文地址:http://www.cnblogs.com/paulversion/p/7076207.html