wanlshop小程序商城配置UNIAPP商城 B2B2C多用户 多终端
作者:互联网
小程序商城配置
https://doc.fastadmin.net/wanlshop/268.html
安装宝塔
安装fastadmin
登录fastadmin后台安装所有插件
宝塔配置域名服务
多商城基础配置
H5配置
小程序配置
HBuilder工具安装与设置
微信开发工具安装与安全设置
后台客户端设置-》生成源码包
解压为目录-》拖入HB
HB-》运行-》生成H5/生成小程序
config.php
//H5跨域请求总是。允许跨域的域名,多个以,分隔
'cors_request_domain' => 'www.xx.com.cn,xx.com.cn,h5.xx.com.cn,api.xx.com.cn,localhost,127.0.0.1',
route.php
//api域名不能访问总是,配置路由添加绑定到模块上
use think\Route;
Route::domain('api.xx.com.cn','api');
return [
//别名配置,别名只能是映射到控制器且访问时必须加上请求的方法
'__alias__' => [
],
//变量规则
'__pattern__' => [
],
// 域名绑定到模块
'__domain__' => [
'api' => 'api',
],
];
标签:__,UNIAPP,cn,配置,xx,api,商城,com,wanlshop 来源: https://blog.csdn.net/lumengabc/article/details/117444889