PHP教程

phpstudy + tp6 出现 404 Not Found nginx/1.15.11

本文主要是介绍phpstudy + tp6 出现 404 Not Found nginx/1.15.11,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

404 Not Found nginx/1.15.11

设置伪静态
打开phpstudy > 网站 >管理 > 伪静态
添加下面代码

if (!-e $request_filename) {
    rewrite ^/(.*)$ /index.php/$1 last;
}

502 Bad Gateway nginx/1.15.11

继续出现502错误

切换PHP版本试试
这篇关于phpstudy + tp6 出现 404 Not Found nginx/1.15.11的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!