后台文件:cmfshop
小程序文件:wei-cmf
数据库: thinkcmfshop.sql
将域名指向cmfshop/public
访问后台:域名/admin,账号:admin,密码:123456
后台插件列表,小程序插件填写相关信息
修改wei-cmf/utils/api.js里的host域名
支付配置在后台设置/微信设置
问题反馈:qq:29285674 邮箱:[email protected]
本程序仅供学习和二次开发使用,本项目停止更新,近期在做UNIAPP版本,敬请期待
伪静态配置:
location / {
index index.php index.html index.htm;
#如果请求既不是一个文件,也不是一个目录,则执行一下重写规则
if (!-e $request_filename)
{
#地址作为将参数rewrite到index.php上。
rewrite ^/(.*)$ /index.php?s=$1;
#若是子目录则使用下面这句,将subdir改成目录名称即可。
#rewrite ^/subdir/(.*)$ /subdir/index.php?s=$1;
}
}
location /api/ {
index index.php index.html index.htm;
#如果请求既不是一个文件,也不是一个目录,则执行一下重写规则
if (!-e $request_filename)
{
#地址作为将参数rewrite到index.php上。
#rewrite ^/(.*)$ /index.php?s=$1;
#若是子目录则使用下面这句,将subdir改成目录名称即可。
rewrite ^/api/(.*)$ /api/index.php?s=$1;
}
}