偽靜態(tài):即網(wǎng)站本身是動(dòng)態(tài)網(wǎng)頁如.php、.asp、.aspx等格式,而這類網(wǎng)頁還帶“?”加參數(shù)來讀取數(shù)據(jù)庫。開啟偽靜態(tài)后,動(dòng)態(tài)網(wǎng)頁即被轉(zhuǎn)換重寫成靜態(tài)網(wǎng)頁類型頁面。
WordPress和其它網(wǎng)站系統(tǒng)不一樣,其它網(wǎng)站系統(tǒng)基本都帶有生成靜態(tài)頁面功能。但Wp只能使用偽靜態(tài)。
現(xiàn)在的主機(jī)基本都會(huì)支持偽靜態(tài)功能,只需在空間后臺(tái)偽靜態(tài)功能,選擇網(wǎng)站系統(tǒng),空間就會(huì)支持該系統(tǒng)的偽靜態(tài)。
如何判讀空間是否支持偽靜態(tài)。在網(wǎng)站后臺(tái):設(shè)置-固定鏈接,選擇第一個(gè)除外,看網(wǎng)站其它頁面是否出現(xiàn)404,如果是,則空間不支持偽靜態(tài)。
只要空間支持偽靜態(tài)重寫URL Rewrite功能,根據(jù)服務(wù)器主機(jī)空間環(huán)境,只需加入下列偽靜態(tài)規(guī)則即可。
Apache偽靜態(tài)規(guī)則
新建一個(gè) txt 文件,將下面的代碼添加到文件中,然后另存為.htaccess文件,上傳到WordPress站點(diǎn)的根目錄即可。
IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
/IfModule>
Nginx規(guī)則
在Nginx中的server模塊配置如下內(nèi)容,打開 nginx.conf 或者某個(gè)站點(diǎn)的配置環(huán)境,例如 /usr/local/nginx/conf/yzipi.conf,在server{ } 大括號(hào)里面添加下面的代碼。
location / {
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
IIS偽靜態(tài)規(guī)則rewrite (.*) /index.php;
}
}
IIS偽靜態(tài)規(guī)則
新建一個(gè) txt 文件,將下面的代碼添加到文件中,然后另存為 httpd.ini 文件,上傳到WordPress站點(diǎn)的根目錄即可。
[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.ini and httpd.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]
參考鏈接Apache Module mod_rewrite
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
您可能感興趣的文章:- Nginx設(shè)置wordpress偽靜態(tài)的方法示例
- Linux XAMPP下啟用WordPress的自定義文件名(偽靜態(tài))功能
- WordPress分頁偽靜態(tài)加html后綴
- WordPress中用于更新偽靜態(tài)規(guī)則的PHP代碼實(shí)例講解
- Nginx下讓W(xué)ordPress支持固定鏈接的偽靜態(tài)規(guī)則
- Nginx下WordPress鏈接(url偽靜態(tài))301永久重定向?qū)崿F(xiàn)方法
- WordPress免插件實(shí)現(xiàn)面包屑導(dǎo)航的示例代碼
- 使用Docker Swarm 搭建Wordpress的方法
- 使用curl命令行模擬登錄WordPress的方法