在WordPress中,可以使用以下規(guī)則來實現(xiàn)偽靜態(tài):
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
這些規(guī)則將把所有非真實存在的文件或目錄路徑重定向到index.php文件,以實現(xiàn)偽靜態(tài)。
location / {
try_files $uri $uri/ /index.php?$args;
}
這個規(guī)則將嘗試查找與請求的路徑對應的文件或目錄,如果找不到,則將請求重定向到index.php文件。
這些規(guī)則將幫助WordPress網(wǎng)站使用偽靜態(tài)URL,使其看起來更加用戶友好,并且對搜索引擎優(yōu)化也有一定的幫助。