独立版表情包小程序源码以及安装说明

资源介绍:01 关于源码 这是一套独立后台版的表情包小程序,这套源码现在非常的火,目前正版的价格在110左右,表情包黄色的版本,个人感觉设计挺漂亮的。后端源码采用的是ThinkCMF6.0的框架,前端是微信原生的代码,后端服务器配置推荐:Nignx1.18+Mysql5.6+PHP7.2。 02 使用教程 一、后端搭建: 1、将后台源码上传到根目录,并设置运行目录为public 2、开启SSL与设置伪静态 开启SSL 伪静态规则如下: location / { index index.php index.html index.htm; if (!-e $request_filename) { rewrite ^/(.*)$ /index.php?s=$1; } } location /api/ { index index.php index.html index.htm; if (!-e $request_filename) { rewrite ^/api/(.*)$ /api/index.php?s=$1; } } location ~* \/upload\/.+\.(html|php)$ {