后端:Nginx 1.18.0+PHP-7.2+mysql5.6 开启ssl php需要安装sg11扩展
源码已经测试,完美可用,此源码可接腾讯广告,做一个小程序流量主,赚广告费,表情包很多人在用,尤其是现在的年轻人。推广起来很容易。小程序到达1000人就可以开通腾讯广告,后面就是坐等收钱了。有喜欢的朋友可以来试试。不懂安装的小白勿扰。
网站目录指向public
以下为伪静态规则,复制在宝塔中设置。
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;
}