rollback

parent 24ba6436
......@@ -48,18 +48,6 @@ $app = require_once __DIR__.'/bootstrap/app.php';
$kernel = $app->make(Kernel::class);
/*
* --------------------------------------------------------------------
* REMOVE index.php from URI
* --------------------------------------------------------------------
*/
if (strpos($_SERVER['REQUEST_URI'],'index.php') !== FALSE )
{
$new_uri = preg_replace('#/queue/index\.php\/?#', '', $_SERVER['REQUEST_URI']);
header('Location: '.$new_uri, TRUE, 301);
die();
}
$response = $kernel->handle(
$request = Request::capture()
)->send();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment