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

源码简介

视频教程在源码里面

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

 

 

二开微信表情包小程序去授权版+网站后端【站长亲测】插图二开微信表情包小程序去授权版+网站后端【站长亲测】插图1二开微信表情包小程序去授权版+网站后端【站长亲测】插图2二开微信表情包小程序去授权版+网站后端【站长亲测】插图3二开微信表情包小程序去授权版+网站后端【站长亲测】插图4二开微信表情包小程序去授权版+网站后端【站长亲测】插图5

伪静态

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;
}

 

© 版权声明
THE END
喜欢就支持一下吧
点赞81 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容