功能我就不介绍了 有需要的小伙伴自行去项目查看
项目:https://github.com/wisp-x/lsky-pro
演示:https://pic.iqy.ink/
使用手册:https://www.kancloud.cn/wispx/lsky-pro/880042
准备工作
- PHP 版本 ≥ 5.6(≤ 7.3)
- Mysql 版本 ≥ 5.5
- Nginx1.18
- PDO 拓展
- ZipArchive 支持
- fileinfo 拓展
- curl 拓展
运行目录为 public
为了防止出错,可以关闭防跨站攻击。
伪静态
Apache 直接使用程序自带的 .htaccess 即可,nginx需要配置下伪静态,代码如下:
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}
安装fileinfo扩展
- 点击PHP安装拓展 找到fileinfo 安装即可
设置权限
- 需要将public目录设置为755 如果755不行设置为777即可
常见问题
- Q:为什么我打开页面 没有跳到安装页面?
- A:请点击Lsky-pro-master文件夹把里面目录剪切出来
- Q:为什么404?
- A:没设置伪静态