芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/myvyralapp.com/bck/app/Http/Middleware/StartingPoint.php
getHttpHost(); $filter_host = preg_replace('/^www\./', '', $client_host); try{ if(Schema::hasTable("script") && DB::table('script')->exists()) { $script = DB::table('script')->first(); if($script && $filter_host != $script->client) { Config::set('starting-point.status',true); Config::set('starting-point.point','/project/install/welcome'); } } }catch(Exception $e) { Config::set('starting-point.status',true); Config::set('starting-point.point','/project/install/welcome'); } if(Config::get('starting-point.status') === true) { return redirect(Config::get('starting-point.point')); } return $next($request); } }