建站初學者必知的wordpress在Nginx/Apache/IIS中的偽靜態規則
在搭建好wordpress博客以後,我都是先讓大家配置好文章的url格式為/%postname%.html這樣的自定義結構的。比如是阿里雲的虛擬主機這樣配置以後,文章頁面還是可以打開的,但是有的伺服器或者是虛擬主機就打不開了,這就需要大家配置好偽靜態的規則。
現在,我就把怎麼配置wordpress的偽靜態規則發出來給大家一起來學習。
wordpress的Nginx/Apache/IIS偽靜態規則
NGINX偽靜態規則
Nginx環境是Linux伺服器裡面常見的網站配置環境,完整網站環境是Linux+Nginx+Mysql+PHP簡稱LNMP環境,他的WordPress偽靜態規則是:
location / {
try_files$uri$uri/ /index.php?$args;
}
# Add trailing slash to */wp-admin requests.
rewrite /wp-admin$$scheme://$host$uri/ permanent;
Apache偽靜態規則
Apache環境也是Linux伺服器裡面常見的網站配置環境,完整網站環境是Linux+Apache+Mysql+PHP簡稱LAMP環境,他的WordPress偽靜態規則是:
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond % !-f
RewriteCond % !-d
RewriteRule . /index.php [L]
打開網站根目錄下面的.htaccess文件,把上面的代碼複製進去,加入沒有這個文件的話,新建一個txt文本文檔,重命名為.htaccess即可。
IIS的偽靜態規則
IIS伺服器是Windows系統自帶的網站服務環境,打開網站根目錄的httpd.ini把代碼配置進去即可,沒有這個文件的新建這個文件。
[ISAPI_Rewrite]
# Defend your computer from some worm attacks
#RewriteRule .*(?:global.asa|default.ida|root.exe|..).* . [F,I,O]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
# Protect httpd.iniandhttpd.parse.errors files
# from accessing through HTTP
# Rules to ensure that normal content gets through
RewriteRule /tag/(.*) /index.php?tag=$1
RewriteRule /software-files/(.*) /software-files/$1[L]
RewriteRule /images/(.*) /images/$1[L]
RewriteRule /sitemap.xml /sitemap.xml [L]
RewriteRule /favicon.ico /favicon.ico [L]
# For file-based wordpress content (i.e. theme), admin, etc.
RewriteRule /wp-(.*) /wp-$1[L]
# For normal wordpress content, via index.php
RewriteRule ^/$ /index.php [L]
RewriteRule /(.*) /index.php/$1[L]
好了,今天的wordpress的Nginx/Apache/IIS偽靜態規則就講完了,如果還有疑問的可以在下面留言哦!
歡迎大家關注楊澤業的澤業建站網,一起來學習實用的建站知識,讓我們的網站能夠更好的幫助我們服務這個世界。
TAG:楊澤業建站 |