您好,登錄后才能下訂單哦!
如何在WordPress中設(shè)置一個偽靜態(tài)規(guī)則?針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
偽靜態(tài):即網(wǎng)站本身是動態(tài)網(wǎng)頁如.php、.asp、.aspx等格式,而這類網(wǎng)頁還帶“?”加參數(shù)來讀取數(shù)據(jù)庫。開啟偽靜態(tài)后,動態(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ī)基本都會支持偽靜態(tài)功能,只需在空間后臺偽靜態(tài)功能,選擇網(wǎng)站系統(tǒng),空間就會支持該系統(tǒng)的偽靜態(tài)。
如何判讀空間是否支持偽靜態(tài)。在網(wǎng)站后臺:設(shè)置-固定鏈接,選擇第一個除外,看網(wǎng)站其它頁面是否出現(xiàn)404,如果是,則空間不支持偽靜態(tài)。
只要空間支持偽靜態(tài)重寫URL Rewrite功能,根據(jù)服務(wù)器主機(jī)空間環(huán)境,只需加入下列偽靜態(tài)規(guī)則即可。
Apache偽靜態(tài)規(guī)則
新建一個 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 或者某個站點(diǎn)的配置環(huán)境,例如 /usr/local/nginx/conf/yzipi.conf,在server{ } 大括號里面添加下面的代碼。
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ī)則
新建一個 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]
關(guān)于如何在WordPress中設(shè)置一個偽靜態(tài)規(guī)則問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。