简介:

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

视频教程在源码里面

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

伪静态

code

  1. location / {
  2. index index.php index.html index.htm;
  3. if (!-e $request_filename)
  4. {
  5. rewrite ^/(.*)$ /index.php?s=$1;
  6. }
  7. }
  8. location /api/ {
  9. index index.php index.html index.htm;
  10. if (!-e $request_filename)
  11. {
  12. rewrite ^/api/(.*)$ /api/index.php?s=$1;
  13. }
  14. }
  15. location ~* /upload/.+.(html|php)$ {
  16. return 404;
  17. }
  18. location ~* ^/plugins/.+.(html|php)$ {
  19. return 404;
  20. }
  21. location ~* /themes/.+.(html|php)$ {
  22. return 404;
  23. }

图片:

声明:本站中所有被研究的资源与信息全部来源于互联网,版权争议与本站无关。本站所发布的任何软件,仅限用于学习和研究软件安全的目的。您必须在下载后的24个小时之内,从您的电脑中彻底删除本站内容。学习网络技术是为了更好的提升自我安全意识。不允许将本站内容私自传播、销售或者其他任何非法用途!否则,一切后果请用户自负!