你 php 的根没有声明吧
你 php 的根没有声明吧
你指的是nginx指定的主目录吗?这指定了的 解决方案:
location /index.php {
index index.php;
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?$1 last;
break;
}
}
location /admin.php {
index admin.php;
if (!-e $request_filename) {
rewrite . /admin.php?$1 last;
break;
}
}
新增了2个location 但是首页index.php省略又做不了了。很是郁闷 ci对rewrite依赖太大