phpstudy_pro运行WordPress时除首页全站404问题记录

打开phpstudy_pro点击设置点击配置文件点击vhosts.conf

Snipaste_2023-11-16_16-02-29.png

末尾添加下列代码

        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;
        }

Snipaste_2023-11-16_16-02-52.png

最后修改:2023 年 11 月 16 日
如果觉得我的文章对你有用,请随意赞赏