在Ubuntu上安装PHP5和Apache
时间:2020-01-09 10:45:20 来源:igfitidea点击:
如果我们要进行任何形式的PHP开发,则几乎总是与它一起使用Apache。这是在Ubuntu机器上启动并运行PHP的快速简便的方法。
首先,我们需要将额外的存储库添加到Ubuntu的sources.list文件中。
在命令shell中,我们将运行以下命令:
sudo apt-get install apache2 sudo apt-get install php5 sudo apt-get install libapache2-mod-php5 sudo /etc/init.d/apache2 restart
请注意,如果已经安装了apache,则可以省略第一行。