安装Mysql

输入命令:

sudo apt-get mysql server

安装Apache2

输入命令:

sudo apt-get install apache2

安装php7.0

输入命令:

sudo apt-get install php7.0
sudo apt-get install libapache2-mod-php7.0

安装php扩展

输入命令:

sudo apt-get install php-fpm php7.0-mysql php7.0-curl php7.0-mbstring php7.0-mcrypt php7.0-xml php7.0-xmlrpc php7.0-gd

部署WordPress

下载WordPress压缩包,解压至/var/www/html/目录下,会得到一个名为wordpress的文件夹,赋予权限:

chmod 777 -R wordpress

重启Apache服务器:

service apache2 restart

浏览器输入输入链接ip/wordpress即可访问。