易优的后台打开不了,出现No input file specified
易优的后台打开不了,出现No input file specified,如果是用的宝塔,删除当前站点根目录下.ini的文件就可以正常显示!
关于易优EyouCMS二级目录伪静态规则:
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}
location /二级目录名/ {
if (!-e $request_filename) {
rewrite ^/二级目录名/(.*)$ /二级目录名/index.php?s=/$1 last;
break;
}
}
