wordpress搭建教程,wordpress⽹站教程,wp建站教程(图⽂详解)wordpress搭建教程,WordPress是⼀款使⽤PHP语⾔开发的博客平台,站长可使⽤通过WordPress搭建属于个⼈的⽹站。本⽂主要分享如何wordpress建站的wordpress搭建教程,从服务器配置、域名解析、⾯板设置、wordpress建站、⽹站优化等⼀些列操作讲解wordpress搭建教程,站长可以学习到的不仅仅是如何成功搭建⼀个Wordpress⽹站,更多的是学习Wordpress⽹站优化,Wordpress可以很强⼤,但是前提是站长已经掌握了它。
wordpress搭建教程技巧分享,详细步骤说明如下:
Linux:Linux 操作系统,以ubuntu18.04 为例;nginx:Web 服务器;mysql:数据库;PHP:脚本语⾔;CMS:WordPress,操作步骤:
wordpress搭建教程步骤1:登录云服务器
win系统建议使⽤Xshell软件进⾏登陆
Mac以及ubuntu系统可以使⽤⾃带的终端进⾏登陆
ssh-p端⼝号服务器⽤户名@ip(例如ssh-p22 username@111.222.111.222)
wordpress搭建教程步骤2:搭建环境
apt update && apt upgrade
apt install -y nginx mysql-server unzip python-certbot-nginx
apt install -y php php-fpm php-mysql php-gd php-json php-xml php-mbstring
wordpress搭建教程步骤3:配置数据库
执⾏以下命令,进⼊mysql
mysql
执⾏以下命令,创建 mysql 数据库。例如 “wordpress”
CREATE DATABASE wordpress;
执⾏以下命令,创建⼀个新⽤户。例如 “user”,登录密码为 123456
CREATE USER 'user'@'localhost' IDENTIFIED BY '123456';
执⾏以下命令,创建⼀个新⽤户。例如 “user”,登录密码为 123456
GRANT ALL PRIVILEGES ON wordpress.* TO 'user'@'localhost' IDENTIFIED BY '123456';
执⾏以下命令,退出 mysql
\q
wordpress搭建教程步骤4:安装和配置 WordPress
下载并解压WordPress软件包
wget WordPress/latest.zip && unzip latest.zip
如何搭建php开发环境设置⽬录权限
chown -R www-data:www-data wordpress/
wordpress搭建教程步骤5:域名解析获取https证书
域名解析⼀般设置两条记录就够了,即将域名指向站长⾃⼰VPS的 IP地址
申请https证书这⾥使⽤ Let’s Encrypt 免费证书
配置 Nginx 以便于 Let’s Encrypt 能起作⽤:
sudo vim /etc/nginx/sites-enabled/default
default替换成你⾃⼰的Nginx配置⽂件名,清空原有内容并添加下⾯的配置
server {
listen 80;
listen [::]:80;
server_name 你的域名;
}
保存退出之后,执⾏以下命令来检测 Nginx 的配置⽂件是否有错
sudo nginx -t
如果出现这样的语句,就说明 Nginx 的配置⽂件没有问题
nginx: the configuration file /etc/f syntax is ok
nginx: configuration file /etc/f test is successful
重新加载 Nginx 的配置⽂件了
sudo nginx -s reload
执⾏命令获取证书
sudo certbot --nginx -d 你的域名
如果第⼀次运⾏ certbot 命令的话,需要在弹出的窗⼝输⼊站长的邮箱地址还有需要接受 Let’s Encrypt 的协议,执⾏完后,就会有输出⼀段字符
后,就会有输出⼀段字符
然后在⽂字中,这个/etc/letsencrypt/live/你的域名/fullchain.pem 路径很重要,就是你的 SSL 证书路径。
⾃动更新证书
因为 Let’s Encrypt 签发的证书有效期只有 90 天,所有在过期之前,我们需要⾃动更新 SSL 证书,⽽如果你使⽤最新的 certbot 的话,Let’s Encrypt 会帮你添加⾃动更新的脚本到 /etc/cron.d ⾥,你只需要去检测⼀下这个命令是否⽣效就OK!
sudo certbot renew --dry-run
如果这个命令你没看到什么 error 的话,那就是没什么问题了。
wordpress搭建教程步骤6:配置nginx
打开第五步设置的Nginx配置⽂件名
sudo vim /etc/nginx/sites-enabled/default
在ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot后加⼊如下内容
root /home/wordpress;
## This should be in your http block and if it is, it's not needed here.
client_max_body_size 10M;
index index.php;
location = /favicon.ico {
log_not_found off;
access_log off;
}
location = / {
allow all;
log_not_found off;
access_log off;
location / {
# This is cool because no php is touched for static content.
# include the "?$args" part so non-default permalinks doesn't break when using query string
try_files $uri $uri/ /index.php?$args;
}
}
location ~ \.php$ {
#NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
f;
fastcgi_intercept_errors on;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
client_max_body_size 10m;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
expires max;
log_not_found off;
}
保存退出之后,执⾏以下命令来检测 Nginx 的配置⽂件是否有错
sudo nginx -t
如果出现这样的语句,就说明 Nginx 的配置⽂件没有问题
nginx: the configuration file /etc/f syntax is ok
nginx: configuration file /etc/f test is successful
重新加载 Nginx 的配置⽂件了
sudo nginx -s reload
wordpress搭建教程步骤7:初始化wordpress
搭建完成,访问站点,“现在开始”,按提⽰配置 WordPress。
填写上⾯记录下的数据库信息,提交。
填写⽹站标题以及设置管理员账号密码
登陆后台
wordpress搭建教程的总体过程已经分享给⼤家,希望对⼤家能有所帮助,如果还有不明⽩,可以结合⽂章图⽚来阅读,快速完成⼀键建站。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论