免费不限量图床链接

  • imge图床imge图床是一款方便用户上传图片并存储链接的工具,可以上传不超过15M的图片。

https://imge.cc

可以上传不超过15M图片。

  • 兔兔图床

https://tutu.to/

可以上传不超过30M图片,但是访问速度较慢

  • imgCC图床

https://www.imgcc.cloud/

可以上传不超过10M图片,但是访问速度较慢

  • PicGo图床

https://www.picgo.net

LightPicture图床管理工具

安装要求

  • PHP 版本 ≥ 7.2

  • Mysql版本 ≥ 5.5

  • PDO 拓展

  • fileinfo 拓展

  • curl 拓展

  • ZipArchive 支持

安装教程

  1. 下载LightPicture,上传至 web 运行环境,解压。

  2. 设置运行目录为 public。

  3. 可以无法通过监测。需要在网站目录里面关闭防跨域站攻击

  4. 配置网站默认文档:

index.html
index.php
  1. 配置 Rewrite 规则为:thinkphp

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

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>

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

  1. 访问 域名/install,根据页面提示安装。

  2. 安装完成后默认 账号为admin 密码123456