安装后访问后台目录 http://xxxxx/admin.php 提示模块不存在
location / {
if (!-e $request_filename) {
rewrite ^(.+?\.php)(/.+)$ /$1?s=$2 last;# 加上这一句
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
致命错误: Call to undefined function think\captcha\imagecreate
需要安装gd库
参考 https://blog.csdn.net/longfeng995/article/details/131473101
致命错误: Call to undefined function think\captcha\imagettftext()