thinkphp6只能打开首页,或者服务器500错误

根据官方文档,把nginx配置文件改成

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