index.php 971 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. // echo $_GET['echostr'];exit;//微信认证时打开这行代码
  3. //define('APP_DOMAIN','wxt.rltest.cn');
  4. define('APP_PREFIX','fdapi');
  5. $plugins = array(
  6. 'kq' => '',
  7. 'wxm' => '/vendor/zmcoding/wxmenu/',
  8. 'uc' => '/vendor/jrtk/jr-ucenter-tp31/',
  9. 'wx' => '',
  10. 'fdls' => '/vendor/jrtk/fd_logs/'
  11. );
  12. $prefix = substr( $_GET['s'] ,0,strpos($_GET['s'] ,'_'));
  13. //define('UICOMP_SERVER','http://jrcomp.rltest.cn:8080/uicomp');
  14. define('UICOMP_SERVER','http://jrcomp.rltest.cn/uicomp');
  15. define('SOLUTION_PATH',__DIR__ .'/');
  16. define('ENTRY_PATH',__DIR__ .'/');
  17. if(! $plugins[$prefix]){
  18. define('SCRIPT_FILENAME',__FILE__);
  19. }
  20. else{
  21. //运行相应插件
  22. $path = __DIR__ . $plugins[$prefix] . 'stub.php';
  23. if(! file_exists($path) )
  24. die('invalid plugin path - ' . $path);
  25. define('SCRIPT_FILENAME', $path);
  26. require $path;
  27. }
  28. require 'vendor/autoload.php';
  29. //$c = new \Aliyun\OTS\OTSClient;
  30. require 'vendor/zmcoding/php-tp313/ThinkPHP.php';