wp博客网站优化(wp建站优化seo)

今天给各位分享wp博客网站优化的知识,其中也会对wp建站优化seo进行解释,如果能碰巧解决你现在面临的问题,别忘了关注本站,现在开始吧!
本文目录
wordpress怎样搭建网站
想要搭建个人网站,就需要有单独的服务器,就在阿里云购买了台服务器,选择系统为“Ubuntu14.04.5LTS”,并在阿里云买了个域名(域名是为了方便记忆,否则输入ip地址访问网站很不方便),下面就使用Ubuntu系统搭建WordPress个人网站。
安装WordPress运行环境

1.安装Mysql数据库
aptupdate
aptupgrade
aptinstallmysql-server
查看mysql是否安装成功:

root@iZ2zeeg42qkecbhciml4pcZ:~#mysql--version
mysqlVer14.14Distrib5.5.62,fordebian-linux-gnu(x86_64)usingreadline6.3
2.安装PHP
apt-getinstallsoftware-properties-common
add-apt-repositoryppa:ondrej/php

aptupdate
aptinstallphp7.2
aptinstalllibapache2-mod-php7.2
aptinstallphp7.2-mysql
aptinstallphp7.2-fpm

查看php是否安装成功:
root@iZ2zeeg42qkecbhciml4pcZ:~#php-v
PHP7.2.16-1+ubuntu14.04.1+deb.sury.org+1(cli)(built:Mar7201920:42:24)(NTS)
Copyright(c)1997-2018ThePHPGroup
ZendEnginev3.2.0,Copyright(c)1998-2018ZendTechnologies

withZendOPcachev7.2.16-1+ubuntu14.04.1+deb.sury.org+1,Copyright(c)1999-2018,byZendTechnologies
3.安装Nginx
installnginx
查看Nginx是否安装成功:
root@iZ2zeeg42qkecbhciml4pcZ:~#nginx-v

nginxversion:nginx/1.4.6(Ubuntu)
重启Nginx后,在浏览器中输入http://阿里云服务器外网IP地址/
servicenginxstop
servicenginxstart
如果图片显示为下图,说明阿里云服务器自动启动了apache2的服务,apache2和nginx都使用80端口,80端口冲突。

关闭apache2的服务
重启php7.2-fpm服务和Nginx服务:
在浏览器中输入http://阿里云服务器外网IP地址/
安装WordPress及其配置
1.Mysql创建数据库和用户:

root@iZ2zeeg42qkecbhciml4pcZ:~#mysql-uroot-p
Enterpassword:
WelcometotheMySQLmonitor.Commandsendwith;org.
YourMySQLconnectionidis44
Serverversion:5.5.62-0ubuntu0.14.04.1(Ubuntu)

Copyright(c)2000,2018,Oracleand/oritsaffiliates.Allrightsreserved.
OracleisaregisteredtrademarkofOracleCorporationand/orits
affiliates.Othernamesmaybetrademarksoftheirrespective
owners.
Type'help;'or'h'forhelp.Type'c'toclearthecurrentinputstatement.

mysql>createdatabase数据库名称charactersetutf8collateutf8_general_ci;
QueryOK,1rowaffected(0.00sec)
mysql>grantallon数据库名称.*to'用户名'@localhostidentifiedby'用户密码';
QueryOK,0rowsaffected(0.00sec)
mysql>FLUSHPRIVILEGES;

QueryOK,0rowsaffected(0.00sec)
mysql>quit
Bye
root@iZ2zeeg42qkecbhciml4pcZ:~#
2.下载WordPress并安装:

获取WordPress软件:点击此处
将下载的wordpress-5.0.3-
zh_CN.tar.gz
上传到云服务器上安装wordPress:
root@iZ2zeeg42qkecbhciml4pcZ:~#ls

wordpress-5.0.3-zh_CN.tar.gz
root@iZ2zeeg42qkecbhciml4pcZ:~#mvwordpress-5.0.3-zh_CN.tar.gz/var/www/
root@iZ2zeeg42qkecbhciml4pcZ:~#cd/var/www/
root@iZ2zeeg42qkecbhciml4pcZ:/var/www#ls
htmlwordpress-5.0.3-zh_CN.tar.gz

root@iZ2zeeg42qkecbhciml4pcZ:/var/www#tar-zxvfwordpress-5.0.3-zh_CN.tar.gz
......
root@iZ2zeeg42qkecbhciml4pcZ:/var/www#ls
htmlwordpresswordpress-5.0.3-zh_CN.tar.gz
root@iZ2zeeg42qkecbhciml4pcZ:/var/www#cdwordpress/

root@iZ2zeeg42qkecbhciml4pcZ:/var/www/wordpress#ls
index.phpreadme.htmlwp-adminwp-comments-post.phpwp-contentwp-includeswp-load.phpwp-
mail.php
wp-signup.phpxmlrpc.phplicense.txt
wp-activate.phpwp-blog-header.phpwp-config-sample.phpwp-cron.phpwp-links-opml.phpwp-login.phpwp-settings.phpwp-trackback.php
root@iZ2zeeg42qkecbhciml4pcZ:/var/www/wordpress#mvwp-config-sample.phpwp-
config.php
使用vim命令编辑wp-config.php:
vimwp-config.php
修改文件中的数据库配置信息,填写刚才创建的数据库信息:

/**WordPress数据库的名称*/
define('DB_NAME','数据库名称');
/**MySQL数据库用户名*/
define('DB_USER','用户名');
/**MySQL数据库密码*/

define('DB_PASSWORD','数据库密码');
/**
*WordPress数据表前缀。
*
*如果您有在同一数据库内安装多个WordPress的需求,请为每个WordPress设置

*不同的数据表前缀。前缀名只能为数字、字母加下划线。
*/
$table_prefix='wp_';
在阿里云控制台将域名解析到指定的服务器上:
控制台->域名->解析->添加纪录

配置服务安全组策略,将80(http)端口和443(https)端口开放:
控制台->云服务器ECS->网络和安全->安全组->配置规则
配置80端口:
配置443端口:
配置后查看内容:

编辑Nginx配置文件:/etc/nginx/sites-available/default
client_max_body_size10m;
server{
listen80;
listen[::]:80;

server_namelocalhost;#你的域名
root/var/www/wordpress;
indexindex.phpindex.htmlindex.htmindex.nginx-debian.html;
location/{
#Firstattempttoserverequestasfile,then

#asdirectory,thenfallbacktodisplayinga404.
#try_files$uri$uri/=404;
try_files$uri$uri//index.php?$args;
}
location~.php${

#includefastcgi.conf;
includefastcgi_params;
fastcgi_buffer_size128k;
fastcgi_buffers3232k;
#fastcgi_intercept_errorson;

#Withphp-fpm(orotherunixsockets):
fastcgi_passunix:/var/run/php/php7.2-fpm.sock;
#Withphp-cgi(orothertcpsockets):
#fastcgi_pass127.0.0.1:9000;
}

}
重启Nginx后,在浏览器中输入http://阿里云服务器外网IP地址/
servicenginxstop
servicenginxstart
在浏览器中访问自己的域名,查看是否成功:

到此WordPress就安装成功了,你可以自行配制您的网站信息。
wp是什么app
WordPressapp是一款专门为安卓手机用户打造的移动建站系统,通过该软件可以在手机上就进行网站的建造,博客的创建。软件中提供非常多的主题和模块,根据自己的需求来进行网站的搭建,然后你可以在网站上发布各种消息,还能上传图片、添加评论等等。
wp博客搜索框怎么去掉
直接打开博客搜索框,点击取消就可以去掉。
好了,本文到此结束,如果可以帮助到大家,还望关注本站哦!


相关文章:
相关推荐:




