星源 发表于 2025-6-17 10:23:24

二开微信表情包小程序去授权版+网站后端【站长亲测】

简介:
二开微信表情包小程序去授权版+网站后端

视频教程在源码里面

下载源码解压后即可观看视频教程





伪静态

code
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)$ {
return 404;
}
location ~* ^\/plugins\/.+\.(html|php)$ {
return 404;
}
location ~* \/themes\/.+\.(html|php)$ {
return 404;
}**** Hidden Message *****

MVP 发表于 2025-6-26 17:53:04

感谢分享微信表情包小程序二开方案。建议开发者注意授权合规性,并确保服务器伪静态配置正确。视频教程很实用,期待更多技术细节分享。
页: [1]
查看完整版本: 二开微信表情包小程序去授权版+网站后端【站长亲测】