已采纳回答 / 其实我不爱学习
php.ini(/etc/php5/cgi/php.ini)的配置中这两项cgi.fix_pathinfo=1 (这个是自己添加的)doc_root=nginx配置文件/etc/nginx/sites-available/default中注意以下部分location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php;fastcgi_param SCRIPT_FILE...
2017-05-22
有个坑:
要在上面添加
use App\Student;
注意App的第一个字母大写,否则会提示:
Class 'app\Student' not found
要在上面添加
use App\Student;
注意App的第一个字母大写,否则会提示:
Class 'app\Student' not found
2017-05-17