同时安装Apache和Php (Integrated installation of apache_

发表于:2007-06-09来源:作者:点击数: 标签:
#tar zxpf apache_1.3.33.tar.Z #tar zxpf php-4.3.10RC2.tar.gz #cd apache_1.3.33 #./configure --prefix=/usr/local/apache #cd ../php-4.3.10RC2 #./configure --with-apache=../apache_1.3.33 --with- mysql =/usr/local/mysql #make #make install #cd

#tar zxpf apache_1.3.33.tar.Z
#tar zxpf php-4.3.10RC2.tar.gz

#cd apache_1.3.33
#./configure --prefix=/usr/local/apache

#cd ../php-4.3.10RC2
#./configure --with-apache=../apache_1.3.33 --with-mysql=/usr/local/mysql
#make
#make install

#cd ../apache_1.3.33
#./configure --prefix=/usr/local/apache --activate-module=src/modules/php4/libphp4.a
#make
#make install

#vi /etc/rc.d/rc.local
add a line: /usr/local/apache/bin/apachectl start

#touch /usr/local/apache/htdocs/testphp.php
add contents (vi):
this is a test.
in a Browser, test the address: http://localhost/testphp.php

原文转自:http://www.ltesting.net