From 5269a15bcffe0a5084092fc61f445c0bee588baa Mon Sep 17 00:00:00 2001 From: Horus Date: Thu, 14 Jan 2021 12:09:03 +0100 Subject: Delete Laravel app. --- server.php | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 server.php (limited to 'server.php') diff --git a/server.php b/server.php deleted file mode 100644 index 5fb6379..0000000 --- a/server.php +++ /dev/null @@ -1,21 +0,0 @@ - - */ - -$uri = urldecode( - parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) -); - -// This file allows us to emulate Apache's "mod_rewrite" functionality from the -// built-in PHP web server. This provides a convenient way to test a Laravel -// application without having installed a "real" web server software here. -if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { - return false; -} - -require_once __DIR__.'/public/index.php'; -- cgit v1.2.3