mirror of
https://github.com/laravel/laravel.git
synced 2025-02-20 11:53:14 +08:00
Merge pull request #3106 from hannesvdvreken/patch-2
fix php artisan serve functionality with hardcoded values
This commit is contained in:
commit
a59a1416cb
@ -4,9 +4,9 @@ $uri = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
|
||||
|
||||
$uri = urldecode($uri);
|
||||
|
||||
$paths = require __DIR__.'/bootstrap/paths.php';
|
||||
$public = __DIR__ . '/public';
|
||||
|
||||
$requested = $paths['public'].$uri;
|
||||
$requested = $public . $uri;
|
||||
|
||||
// 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
|
||||
@ -16,4 +16,4 @@ if ($uri !== '/' and file_exists($requested))
|
||||
return false;
|
||||
}
|
||||
|
||||
require_once $paths['public'].'/index.php';
|
||||
require_once $public . '/index.php';
|
||||
|
Loading…
x
Reference in New Issue
Block a user