自定义全局函数控制AppEn.php恶意测试访问

全局函数创建,与演示控制api入口文件全局判断
全局函数
详情

功能说明,隐藏AppEn.php 访问,可以给文件改名字也可以

创建文件地址:LibBsphp/common/b.function.php

  1. <?php
  2. //后台地址 后台地址只可以 127.0.0.1进行访问,有端口加端口
  3. if (BSPHP_SET == 'APPEN') {
  4. //验证基本访问,随便打开入口屏蔽
  5. if (Plug_Set_Get('m') == '' and Plug_Set_Get('appid') == '') {
  6. #跳转百度
  7. header("Location: http://www.baidu.com/");
  8. header("HTTP/1.0 404 Not Found");
  9. exit;
  10. }
  11. //验证数据包
  12. if (Plug_Set_Get('parameter') == '' and Plug_Set_Post('parameter') == '' and Plug_Set_Get('api') == '' and Plug_Set_Post('api') == '') {
  13. //header("Location: http://www.baidu.com/");
  14. //header("HTTP/1.0 404 Not Found");
  15. echo '没接收到参数';
  16. exit;
  17. }
  18. }