chevereto图床安装

chevereto是目前最好的图床之一了。功能也非常强大。其免费版和收费版的区别,在于收费版多了硬盘扩展,社交分享功能和技术支持。硬盘扩展指的是你可以通过sftp等方式把上传的文件储存在其他服务器上。所以个人觉得,这个免费版已经足够使用了。而且chevereto的安装也非常简单,并且支持中文。


针对服务器安装来讲,如果你的服务器环境是apache+php组合那直接安装不会出现错误,如果你的服务器环境是nginx那么请配置伪静态,不然安装会出现404错误
NGNIX伪静态规则:

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; }

官网:https://chevereto.com/
DEMO:https://demo.chevereto.com/
安装包:https://chevereto.com/download/file/installer

直接安装选择免费版就好了。

发布者:LiuCi

辛苦是获得一切的定律。