bazalt / thumbs
dev-master
2015-02-04 06:53 UTC
Requires
- imagine/imagine: *
- twig/twig: *
This package is not auto-updated.
Last update: 2024-09-14 14:59:38 UTC
README
通过Composer安装
php composer require bazalt/thumbs
或者直接在composer.json中添加此配置
{
"require": {
"bazalt/thumbs": "dev-master"
}
}
Nginx
location /static/ {
root /www/public;
try_files $uri /index.php?file=$uri;
}
Apache
RewriteCond %{REQUEST_URI} ^(/static/)
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^(.*)$ thumb.php?file=$1 [L]