分类: LINUX
2009-11-22 13:07:06
This is the default web page for this server.
The web server software is running but no content has been added, yet.
3.最后是安装php
然后启动 测试PHP5是否安装成功 然后在浏览器中打开test.php,就会进入php的信息网页, 如果进入,证明安装成功。 好了,这些就是LAMP的基本框架已经差不多搭建起来, 不过还有一些小问题,比如让php和mysql一起工作,这些在后面我就会说到。
sudo apt-get install php5
sudo apt-get install libapache2-mod-php5
sudo /etc/init.d/apache2 restart
sudo gedit /var/www/testphp.php
在里面写入
phpinfo();
?>