环境:CentOs
预装:MySQL
1.确认有下列包
gd-2.0.28.tar.gz
libxml2-2.6.11.tar.gz
zlib-1.2.1.tar.gz
jpegsrc.v6b.tar.gz
libpng-1.2.5.tar.gz
rpm -qa XXX 查询
2.安装 apach1.3
./configure --prefix='安装路径' --enable-module=so
make
make install
3.安装 php5.3
./configure --prefix='安装路径' --with-apxs2='apache安装路径'/bin/apxs -with-mysql='mysql安装路径'
make
make install
4.php的配置
编辑apache配置文件httpd.conf
#AddType application/x-tar .tgz
下加一行
AddType application/x-httpd-php .php
还有找到
DirectoryIndex index.html index.html.var
在后面加 index.php 让它把index.php做为默认页
再找
#ServerName
把#去掉,后面的IP改成你的IP.