启用 NGINX 后,子目录中 WordPress 博客中的所有帖子都给出 404 页面未找到

After enabling NGINX, all posts in WordPress blogs in sub-directories are giving 404 Page Not Found

在我从 Plesk (Web Pro) 启用 NGINX 后,我在主目录和子目录博客中的所有帖子都出现 404 页面未找到错误。

我在 Plesk 的“其他 NGINX 指令”中放置了以下代码来修复所有 URLS,但它只修复了主站点 (example.com) 而子目录博客 (example.com/tech/, example.com/mag/ and example.com/dispatch/) 仍然给出 404 错误。

# Wordpress Permalinks
if (!-e $request_filename) {
    rewrite ^(.+)$ /index.php?q= last;
}

之后,我删除了代码并放置了以下代码:

if (!-e $request_filename) {
set $test P;
}
if ($uri !~ ^/(plesk-stat|webstat|webstat-ssl|ftpstat|anon_ftpstat|awstats-icon|internal-nginx-static-location)) {
set $test "${test}C";
}
if ($test = PC) {
rewrite ^/(.*)$ /index.php?;
}

我在其中一个 official Plesk pages 中找到了这段代码,上面写着:

If a WordPress installation is located in a subdirectory (for example, "httpdocs/sub-dir") or this is a WordPress multisite network based on subdirectories, add the /sub-dir/ before /index.php? so it will look like this: rewrite ^/(.*)$ /sub-dir/index.php?; Note: For WordPress multisite network based on subfolder, add the above rule for each subdirectory.

截至目前,我得到了这个(不起作用):

if (!-e $request_filename) {
set $test P;
}
if ($uri !~ ^/(plesk-stat|webstat|webstat-ssl|ftpstat|anon_ftpstat|awstats-icon|internal-nginx-static-location)) {
set $test "${test}C";
}
if ($test = PC) {
rewrite ^/(.*)$ /index.php?;
rewrite ^/(.*)$ /tech/index.php?;
rewrite ^/(.*)$ /mag/index.php?;
rewrite ^/(.*)$ /dispatch/index.php?;
}

任何帮助将不胜感激!

P.S。主网站就像一个魅力。在示例中。com/tech/ 和 /mag/ 和 /dispatch/ 虽然主页很好,但帖子给我一个 404 页面错误。

经过一个月的搜索,我终于找到了一个非常有效的解决方案。

首先,登录您的 Plesk(为此使用 Plesk)并转到您网站的 “Apache & nginx 设置” 页面。在"Additional NGINX Directives"(先修改)粘贴以下代码:

if (!-f $request_filename){
    set $rule_0 1$rule_0;
}
if (!-d $request_filename){
    set $rule_0 2$rule_0;
}
if ($rule_0 = "21"){
    rewrite ^/tech/(.*)$ /subfolder1/index.php?url= last;
}
if (!-f $request_filename){
    set $rule_1 1$rule_1;
}
if (!-d $request_filename){
    set $rule_1 2$rule_1;
}
if ($rule_1 = "21"){
    rewrite ^/dispatch/(.*)$ /subfolder2/index.php?url= last;
}

subfolder1 和 subfolder2 代表每个子目录站点的网站根文件夹。

  • subfolder1代表例子。com/subfolder1
  • subfolder2代表例子。com/subfolder2

等..

对于您要添加的每个子文件夹 WP 站点,只需放置以下代码并将 subfolder1 更改为您的站点名称。

 if (!-f $request_filename){
        set $rule_0 1$rule_0;
    }
    if (!-d $request_filename){
        set $rule_0 2$rule_0;
    }
    if ($rule_0 = "21"){
        rewrite ^/tech/(.*)$ /subfolder1/index.php?url= last;
    }

P.S。转换后的代码需要添加到“Additional NGINX Directives”中。

尝试通过文件管理器创建一个新文件“.htaccess”,或将其上传到 /httpdocs/ 或存储文件的位置。

文件内容:

IndexIgnore * # prevent directory listing
Order deny,allow
Allow from *
# ------------------------------------------ # Rewrite so that php extentions are not shown
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ .php