您好,登錄后才能下訂單哦!
如何在WordPress中設置一個偽靜態規則?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
偽靜態:即網站本身是動態網頁如.php、.asp、.aspx等格式,而這類網頁還帶“?”加參數來讀取數據庫。開啟偽靜態后,動態網頁即被轉換重寫成靜態網頁類型頁面。
WordPress和其它網站系統不一樣,其它網站系統基本都帶有生成靜態頁面功能。但Wp只能使用偽靜態。
現在的主機基本都會支持偽靜態功能,只需在空間后臺偽靜態功能,選擇網站系統,空間就會支持該系統的偽靜態。
如何判讀空間是否支持偽靜態。在網站后臺:設置-固定鏈接,選擇第一個除外,看網站其它頁面是否出現404,如果是,則空間不支持偽靜態。
只要空間支持偽靜態重寫URL Rewrite功能,根據服務器主機空間環境,只需加入下列偽靜態規則即可。
Apache偽靜態規則
新建一個 txt 文件,將下面的代碼添加到文件中,然后另存為.htaccess文件,上傳到WordPress站點的根目錄即可。
<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規則
在Nginx中的server模塊配置如下內容,打開 nginx.conf 或者某個站點的配置環境,例如 /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偽靜態規則rewrite (.*) /index.php;
}
}
IIS偽靜態規則
新建一個 txt 文件,將下面的代碼添加到文件中,然后另存為 httpd.ini 文件,上傳到WordPress站點的根目錄即可。
[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]
關于如何在WordPress中設置一個偽靜態規則問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。