Skip to content

Commit

Permalink
Merge pull request #3302 from EliuFlorez/patch-13
Browse files Browse the repository at this point in the history
Update server.php
  • Loading branch information
taylorotwell committed Mar 4, 2015
2 parents 393569b + 3bd0584 commit 7cbe38c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// 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 !== '/' and file_exists(__DIR__.'/public'.$uri))
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri))
{
return false;
}
Expand Down

0 comments on commit 7cbe38c

Please sign in to comment.