WordPress伪静态规则 Nginx / Tengine / Apache / IIS

如果您想要让您的WordPress网站URL看起来更加美观,而不是使用带参数的动态URL,那么您可以使用伪静态(也称为美化链接)来实现这个目标。伪静态是通过使用URL重写规则来处理动态页面请求的技术,从而使您的页面URL看起来更具可读性和美观性。这不仅可以改善用户的使用体验,还可以提高您的网站在搜索引擎中的排名。

Nginx / Tengine

Nginx是目前很流行的web容器,在nginx配置文件中修改,Tengine是由淘宝网发起的Web服务器项目。它在Nginx的基础上,针对大访问量网站的需求,添加了很多高级功能和特性。

location /
{
    try_files $uri $uri/ /index.php?$args;
}
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
    

Apache

在网站根目录新建一个 htaccess.txt 文件,添加

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
</IfModule>

IIS

IIS 环境是 Windows 主机常用的服务器环境

[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]