1、 wordpress教程網,怎樣使用wordpress制作一個企業網站?
wordpress只適合做個人博客,做企業站不好優化,而且速度很慢,各種卡頓。
企業網站建議用pageadmin或織夢這些系統,國內大部分企業網站都用pageadmin,這個做企業網站最適合。
2、 把wordpress改得最不像blog的網站有哪些?
謝邀!
我是2010年開始學習joomla網站制作,本來是想做一個自己的網站,自學幾個月上手之后,開始兼職接活,前后差不多做過幾十個站,公司,企業,產品展示,客戶國內國外的都有。17年因工作原因,沒有做了。
WordPress和joomla的功能類似,剛開始是做博客的比較多,那是因為當時流行博客。后來隨著需求的增加,它們的功能是越來越豐富:論壇,商城,社交,會員管理,下載站,文檔管理,音樂/電影在線欣賞,等等諸多功能都可以實現,這些繁多的功能,主要得益于這兩款程序的開源性,以及安裝插件的靈活性,因為所有的功能基本都可以通過插件來實現。也有專門開發這兩個程序的模板和插件的公司,都做得很漂亮。
其實這兩款開源程序,搞懂它們的功能邏輯,是很容易上手的。
如果想要看網站的演示,可以去它們的官網找一下。
歡迎大家交流!
關注并私信我,回復【網站】獲取全套joomla網站制作視頻教程,及300多套模板。
3、 如何保護WordPress網站?
將下面的代碼加到你的當前主題的functons.php的適當位置: function coolwp_filter_password_protected_post_excerpt( $content ) { if ( post_password_required() ) $content = '這個頁面或者文章受密碼保護,請輸入密碼查看摘要內容.'; return $content;}add_filter( 'the_excerpt', 'coolwp_filter_password_protected_post_excerpt' );add_filter( 'the_content', 'coolwp_filter_password_protected_post_excerpt' ); 即可確保你的摘要和文章內容都不會在文章列表頁和文章詳情頁被非法查看,如果更完善的想保護自己的內容,Access Level Pro是不錯的選擇。
4、 wordpress怎樣搭建網站?
想要搭建個人網站,就需要有單獨的服務器,就在阿里云購買了臺服務器,選擇系統為“Ubuntu 14.04.5 LTS”,并在阿里云買了個域名(域名是為了方便記憶,否則輸入ip地址訪問網站很不方便),下面就使用Ubuntu系統搭建WordPress個人網站。
安裝WordPress運行環境
1.安裝Mysql數據庫
apt update
apt upgrade
apt install mysql-server
查看mysql是否安裝成功:
root@iZ2zeeg42qkecbhciml4pcZ:~# mysql --version
mysql Ver 14.14 Distrib 5.5.62, for debian-linux-gnu (x86_64) using readline 6.3
2.安裝PHP
apt-get install software-properties-common
add-apt-repository ppa:ondrej/php
apt update
apt install php7.2
apt install libapache2-mod-php7.2
apt install php7.2-mysql
apt install php7.2-fpm
查看php是否安裝成功:
root@iZ2zeeg42qkecbhciml4pcZ:~# php -v
PHP 7.2.16-1+ubuntu14.04.1+deb.sury.org+1 (cli) (built: Mar 7 2019 20:42:24) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies
with Zend OPcache v7.2.16-1+ubuntu14.04.1+deb.sury.org+1, Copyright (c) 1999-2018, by Zend Technologies
3.安裝Nginx
install nginx
查看Nginx是否安裝成功:
root@iZ2zeeg42qkecbhciml4pcZ:~# nginx -v
nginx version: nginx/1.4.6 (Ubuntu)
重啟Nginx后,在瀏覽器中輸入http://阿里云服務器外網IP地址/
service nginx stop
service nginx start
如果圖片顯示為下圖,說明阿里云服務器自動啟動了apache2的服務,apache2和nginx都使用80端口,80端口沖突。
關閉apache2的服務
重啟php7.2-fpm服務和Nginx服務:
在瀏覽器中輸入http://阿里云服務器外網IP地址/
安裝WordPress及其配置
1.Mysql創建數據庫和用戶:
root@iZ2zeeg42qkecbhciml4pcZ:~# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 44
Server version: 5.5.62-0ubuntu0.14.04.1 (Ubuntu)
Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> create database 數據庫名稱 character set utf8 collate utf8_general_ci;
Query OK, 1 row affected (0.00 sec)
mysql> grant all on 數據庫名稱.* to '用戶名'@localhost identified by '用戶密碼';
Query OK, 0 rows affected (0.00 sec)
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)
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:~# mv wordpress-5.0.3-zh_CN.tar.gz /var/www/
root@iZ2zeeg42qkecbhciml4pcZ:~# cd /var/www/
root@iZ2zeeg42qkecbhciml4pcZ:/var/www# ls
html wordpress-5.0.3-zh_CN.tar.gz
root@iZ2zeeg42qkecbhciml4pcZ:/var/www# tar -zxvf wordpress-5.0.3-zh_CN.tar.gz
......
root@iZ2zeeg42qkecbhciml4pcZ:/var/www# ls
html wordpress wordpress-5.0.3-zh_CN.tar.gz
root@iZ2zeeg42qkecbhciml4pcZ:/var/www# cd wordpress/
root@iZ2zeeg42qkecbhciml4pcZ:/var/www/wordpress# ls
index.php readme.html wp-admin wp-comments-post.php wp-content wp-includes wp-load.php wp-
mail.php
wp-signup.php xmlrpc.phplicense.txt
wp-activate.php wp-blog-header.php wp-config-sample.php wp-cron.php wp-links-opml.php wp-login.php wp-settings.php wp-trackback.phproot@iZ2zeeg42qkecbhciml4pcZ:/var/www/wordpress# mv wp-config-sample.php wp-
config.php
使用vim命令編輯wp-config.php:
vim wp-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_size 10m;
server {
listen 80;
listen [::]:80;
server_name localhost; #你的域名
root /var/www/wordpress;
index index.php index.html index.htm index.nginx-debian.html;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
#try_files $uri $uri/ =404;
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
# include fastcgi.conf;
include fastcgi_params;
fastcgi_buffer_size 128k;
fastcgi_buffers 32 32k;
#fastcgi_intercept_errors on;
# With php-fpm (or other unix sockets):
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
# With php-cgi (or other tcp sockets):
#fastcgi_pass 127.0.0.1:9000;
}
}
重啟Nginx后,在瀏覽器中輸入http://阿里云服務器外網IP地址/
service nginx stop
service nginx start
在瀏覽器中訪問自己的域名,查看是否成功:
到此WordPress就安裝成功了,你可以自行配制您的網站信息。
5、 如何優化wordpress博客站?
wordpress 是國外開發的很多插件都是用的國外服務器速度很慢,用香港主機部署wordpress根本就是垃圾網站,打開網頁速度你想砸電腦的感覺,站內優化,比如說wordpress 怎么優化,做描文本鏈接到下一篇相關性文章,一篇文章只出兩個關鍵詞,比如說:wordpress怎么優化,文章中出現了兩個wordpress怎么優化,把一個wordpress怎么優化加粗,讓蜘蛛更好的識別,一篇文章出現兩個左右的關鍵詞,出現太多就是關鍵詞堆砌百度就會懲罰,要是加入視頻就更好了。