liangge 发表于 2023-1-25 22:36:10

LightPicture简洁图传源码





安装教程
下载LightPicture
上传至 web 运行环境 解压。
设置运行目录为:public
配置网站默认文档:index.html/index.php
配置 Rewrite 规则为:thinkphp

Apache
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1
</IfModule>

Nginx
location / {
   if (!-e $request_filename) {
                   rewrite^(.*)$/index.php?s=/$1last;
    }
}

ps:访问域名/install,然后进行安装。
安装完成后账号默认为admin 密码:123456

下载地址

**** Hidden Message *****
页: [1]
查看完整版本: LightPicture简洁图传源码