更改固定链接设置

在WordPress后台,进入“设置”->“固定链接”,不需要更改任何设置,直接点击“保存设置”2。这通常可以刷新WordPress的伪静态规则。

检查Nginx配置

如果你的服务器使用的是Nginx,你可能需要在Nginx的配置文件中添加一些代码来支持WordPress的伪静态(.htaccess文件内容替换为下列内容)。具体的代码如下:


# BEGIN WordPress
# The directives (lines) between "BEGIN WordPress" and "END WordPress" are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
 
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
 
# END WordPress

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注