1.去Chevereto下载官方免费代码:
https://github.com/Chevereto/Chevereto-Free
2.将压缩包上传到网站根目录,并在宝塔文件程序里解压缩压缩包
查看app
文件包里有没有settings.php
如果有,赋予777
权限
如果打开网站时提示:Chevereto can’t create the app/settings.php file. You must manually create this file.
这是app
目录缺少settings.php
文件
需要在app
目录下新建一个空文件命名:settings.php
赋予777
权限
3.浏览器输入域名,进行安装
进入域名后显示404
,这是伪静态没设置
location / {
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}
try_files $uri $uri/ /api.php;
}
location /admin {
try_files $uri /admin/index.php?$args;
}
在宝塔面板点击网站
,找到域名网站,点击设置-伪静态
,在空白处输入以上代码,保存!