简介:
二开微信表情包小程序去授权版+网站后端
视频教程在源码里面
下载源码解压后即可观看视频教程
伪静态
location/{
indexindex.phpindex.htmlindex.htm;
if(!-e$request_filename)
{
rewrite^/(.*)$/index.php?s=$1;
}
}
location/api/{
indexindex.phpindex.htmlindex.htm;
if(!-e$request_filename)
{
rewrite^/api/(.*)$/api/index.php?s=$1;
}
}
location~*/upload/.+.(html|php)${
return404;
}
location~*^/plugins/.+.(html|php)${
return404;
}
location~*/themes/.+.(html|php)${
return404;
}
图片:






