1、nginx配置完本地环境报错如下No input file specified,错误的问题可能之一:root的目录路径为"\",需要改成“/”
2、phpstudy里nginx隐藏index.php,在网站配置里,需添加或修改以下代码
location / {
index index.html index.htm index.php;
#autoindex on;
}
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}