phpstudy thinkphp5在nginx服务器上除了首页其余都是404的问题
这行代码要不就放在vhosts.conf里,要不就是在nginx.conf里
try_files $uri $uri/ /index.php?$query_string;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
具体位置如下