index.php 794 B

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