扫码到手机上查看
或分享到朋友圈和好友
ECOSYSTEM
DEPLOY
选择适合您的安装方式
适用于全新 Linux 环境
支持系统:Ubuntu 24.x
使用 root 用户登录服务器后,执行右侧命令
$ curl -fsSL https://www.site.org.cn/openplatform/panel/install | bash
适用于已部署好Web环境的服务器
环境要求:Nginx/Apache、MySQL 5.7+/8.0+、PHP 8.0+(推荐 PHP 8.2 及以上)
artifact install.php
root …/your-site/public/
entry https://您的域名/install.php
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
}
}
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]
</IfModule>
适用于已安装好宝塔面板的用户
环境要求:Nginx/Apache、MySQL 5.7+/8.0+、PHP 8.0+(推荐 PHP 8.2 及以上)