php 简单安装

apache 安装php
1、#./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs --with-jpeg-dir=/usr/local  --with-zlib-dir=/usr/local 
2、
#make
#make test
#make install

3、一般都在#AddType application/x-tar .tgz下加一行
#LoadModule php5_module modules/libphp5.so
AddType application/x-httpd-php .php
如果你搜索其它地方没有以下这行LoadModule php5_module modules/libphp5.so,把上面的#号去掉

4、DirectoryIndex index.html index.html.var 在后面加 index.php 让它把index.php做为默认页

你可能感兴趣的:(PHP,安装)