Chevereto Free 作者: Fmq 时间: 2018-03-26 分类: 随手笔记 Chevereto 是目前最为强大的 PHP 图床系统,通过它可部署多用户公开或私有的图片存储服务, Chevereto 有免费的版本,完全能满足日常使用。 ## 项目地址 [https://github.com/Chevereto/Chevereto-Free](https://github.com/Chevereto/Chevereto-Free "https://github.com/Chevereto/Chevereto-Free") ## 环境要求 PHP > 5.5 MySQL > 5.1 ## 伪静态 Apache的伪静态规则压缩包内已经包含 Nginx的伪静态规则 ```php 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; } ``` 标签: chevereto, 伪静态