基于LAMP+wordpress搭建网站

 

原文链接

             https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu-16-04

              http://blog.csdn.net/kexiangong/article/details/38871193

              http://blog.topspeedsnail.com/archives/4635

              https://www.cnblogs.com/wpjamer/p/4510992.html

ubuntu环境下

卸载必须要卸载干净,不然后续残余的配置文件会很麻烦

1、卸载Apache2

 

[html] view plain copy

  1. sudo apt-get --purge remove apache2  

[html] view plain copy

  1. sudo apt-get --purge remove apache2-common  
  2. sudo apt-get --purge remove apache2-utils  
  3. sudo apt-get autoremove apache2  
 

 

(--purge是不保留配置文件的意思,这个绝对不能少)

删掉/etc/apache2 文件夹: sudo rm -rf /etc/apache2

删掉/var/www 文件夹: sudo rm -rf /var/www

 

删掉/etc/init.d/apache2文件: sudo rm -rf /etc/init.d/apache2

卸载语句

sudo apt-get --purge remove

sudo apt-get autoremove

搜索指令

dpkg -l | grep <目标>

下载指令

wget

列出PHP所支持的模块

sudo apt-cache search php7.0

 

安装好wordpress之后主题安装的权限问题

更改wp-content的group和user

chown -R www-data:www-data 

 

网站访问速度优化:

SEO   https://blog.csdn.net/linyiphp/article/details/79020943

八个免费在线网站速度测试服务  http://www.chinaz.com/web/2015/0108/378547_5.shtml

WordPress 网站全方位速度优化:HTML JS CSS等  http://www.chinaz.com/web/2016/0927/586657.shtml

1.网站性能测试

http://www.webpagetest.org

http://www.pagespeed insights

2.允许wordpress上传webp格式图片

修改wordpress/include/functions.php

搜索image,在相关过滤函数中添加 'image/webp'->'webp'

 

你可能感兴趣的:(基于LAMP+wordpress搭建网站)