nginx 404 not fund 配置 thinkphp6 伪静态

win10 下面 thinkphp6 ,使用phpstudy 的 apache 切换到nginx 控制器报错 404 not fund

 

nginx 404 not fund 配置 thinkphp6 伪静态_第1张图片

 

将以下代码 放到 网站 -> 管理->修改->伪静态  重启phpstudy 即可 

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

 

nginx 404 not fund 配置 thinkphp6 伪静态_第2张图片

 

 

你可能感兴趣的:(PHP,学习,phpstudy)