标签:shell install com 内容 更换 rop 新建 osi apt
安装Apache
sudo apt-get install apache2
修改端口号
打开 etc/apache2/port.config
修改 port 80
重启Apache
service apache2 restart
安装software-properties-common
apt-get install software-properties-common
更换安装源
add-apt-repository ppa:ondrej/php
更新源
sudo apt-get update
apt-get upgrade
安装php7.0
apt-get install php7.0
在 Apache var/www/
目录下面新建 index.php
文件,输入下面内容:
<?php
echo “Hello World”;
?>
重启 Apache
service apache2 restart
打开
http://localhost/index.php
如果出现Hello World
说面安装成功。
标签:shell install com 内容 更换 rop 新建 osi apt
原文地址:https://www.cnblogs.com/memorypro/p/9537853.html