We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85084e4 commit f0c103eCopy full SHA for f0c103e
server.php
@@ -11,7 +11,7 @@
11
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
12
// built-in PHP web server. This provides a convenient way to test a Laravel
13
// application without having installed a "real" web server software here.
14
-if ($uri !== '/' and file_exists($requested))
+if (isset($uri) and file_exists($requested))
15
{
16
return false;
17
}
0 commit comments