开源分发系统/ios免签分发系统/apk安卓一键封装系统源码
搬来的 测试时没教程 源码测了下没啥问题 这边写了个教程:
已获得查看权限
安卓apk打包工具是需要java的 如果你只需要分发就不用装java了
nginx+php7.3+mysql5.7
部署:域名/index.php/install
伪静态:
——————————————————
location ~* (runtime|application)/{
return 403;
}
location / {
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php/$1 last;
}
}
——————————————————
nginx配置:
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
# 关键:PATH_INFO支持
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
include fastcgi_params;
}

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

