在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>
这些规则将把所有非真实存在的文件或目录路径重定向到index.php文件,以实现伪静态。
location / {
try_files $uri $uri/ /index.php?$args;
}
这个规则将尝试查找与请求的路径对应的文件或目录,如果找不到,则将请求重定向到index.php文件。
这些规则将帮助WordPress网站使用伪静态URL,使其看起来更加用户友好,并且对搜索引擎优化也有一定的帮助。