1 问题

PhpStudy本地测试wordPress,在后台修改固定链接方式之后出现了文章页面链接打不开的问题,直接404

2 解决方法

修改配置文件vhosts.conf文件,如下图
WordPress – PhpStudy本地环境修改固定链接打不开网页404错误-StubbornHuang Blog

在该文件location处加入以下代码:

if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}

if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}

if (!-f $request_filename){
rewrite (.*) /index.php;
}

修改后整个vhosts.conf配置文件内容如下:

server {
        listen        80;
        server_name  localhost;
        root   "D:/Program Files (x86)/PhpStudy/phpstudy_pro/WWW";
        location / {
            index index.php index.html;
            error_page 400 /error/400.html;
            error_page 403 /error/403.html;
            error_page 404 /error/404.html;
            error_page 500 /error/500.html;
            error_page 501 /error/501.html;
            error_page 502 /error/502.html;
            error_page 503 /error/503.html;
            error_page 504 /error/504.html;
            error_page 505 /error/505.html;
            error_page 506 /error/506.html;
            error_page 507 /error/507.html;
            error_page 509 /error/509.html;
            error_page 510 /error/510.html;
            autoindex  off;
            if (-f $request_filename/index.html){
            rewrite (.*) $1/index.html break;
            }

            if (-f $request_filename/index.php){
            rewrite (.*) $1/index.php;
            }

            if (!-f $request_filename){
            rewrite (.*) /index.php;
            }
        }
        location ~ \.php(.*)$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            fastcgi_param  PATH_INFO  $fastcgi_path_info;
            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
            include        fastcgi_params;
        }
}

修改之后保存,在phpstudy重启nginx或者即可。

3 更新

更新于2023年5月25日。

今天重新按照上述步骤在phpstudy v8.1上进行配置,文章是可以正常访问,但是localhost也就是网站首页没有办法正常打开了,然后重新找了一个方法,既可以打开文章页面也可以不影响首页。

在phpstudy侧面菜单,点击网站 - 选择管理网站,然后点击伪静态,如下图

WordPress – PhpStudy本地环境修改固定链接打不开网页404错误-StubbornHuang Blog

然后在伪静态输入以下代码:

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

如下图

WordPress – PhpStudy本地环境修改固定链接打不开网页404错误-StubbornHuang Blog

点击确认之后,nginx会自动重启,然后就可以正常打开网站首页和文章页面了。