开源免费PHP图床程序ImgURL
GitHub:https://github.com/helloxz/imgurl
demo:
http://test.imgurl.org/
账号:xiaoz
密码:xiaoz.me
ImgURL目前已更新到2.0版本,使用CodeIgniter完全重构,功能也更加强大。
安装ImgURL 2.x
自2.x版本开始,ImgURL使用CodeIgniter框架开发,因此您需要先配置好伪静态,并确保环境满足以下要求。
PHP >= 5.6
PDO_SQLite
GD2
ImageMagick
fileinfo
pathinfo
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~* \.(db3|json)$ {
deny all;
}
location ~* ^/(temp|upload|imgs|data|application|static|system)/.*.(php|php5)$ {
return 403;
}
将上面的规则添加到Nginx server段内,别忘记重载一次nginx
Apache
默认已经包含.htaccess规则,默认无需设置。
安装
访问:https://github.com/helloxz/imgurl/releases 下载最新版源码,并解压到站点根目录。(注意目录权限、注意目录权限、注意目录权限)
访问您的域名http(s)://domain.com/install/?setup=1 根据提示进行安装,如果环境检测不通过,请自行解决环境问题。