We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
遇到问题先看FAQ,再更新到最新版看看问题有无解决,如果还有问题请联系Yuguo。
原因可能是服务器没有开images文件夹的写权限,试试在根目录(跟application平级的)新建一个文件夹叫images,然后权限弄成777
访问 站点url/login/install 404
站点url/login/install
原因是.htaccess没有生效,请配置以下Nginx规则:
location / { index index.php; if (-f $request_filename/index.php){ rewrite (.*) $1/index.php; } if (!-f $request_filename){ rewrite (.*) /index.php; } }