免费版的小程序集群晚点才能升级。
暂时只能使用二级目录xcx,域名不限,也就是说,你用别的域名也必须是二级目录xcx。后续再给大家自定义目录名或者是直接使用二级域名的根目录。
如果是apache服务器的话,可以直接访问 https://你的域名/xcx/
如果是NG服务器的话,需要增加伪静态规则,
rewrite ^/xcx/. /xcx/index.html last;
如下图所示

所有代码如下
location / {
if (-e $request_filename) {
break;
}
#try_files $uri $uri/ /xcx/index.html last;
if (!-e $request_filename) {
rewrite ^/xcx/. /xcx/index.html last;
rewrite ^/(.*)$ /index.php/$1 last;
break;
}
}演示地址如下