Revize bce7c98a
Přidáno uživatelem Marek Lovčí před více než 4 roky(ů)
server.php | ||
---|---|---|
14 | 14 |
// This file allows us to emulate Apache's "mod_rewrite" functionality from the |
15 | 15 |
// built-in PHP web server. This provides a convenient way to test a Laravel |
16 | 16 |
// application without having installed a "real" web server software here. |
17 |
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
|
|
17 |
if ($uri !== '/' && file_exists(__DIR__ . '/public_html' .$uri)) {
|
|
18 | 18 |
return false; |
19 | 19 |
} |
20 | 20 |
|
21 |
require_once __DIR__.'/public/index.php'; |
|
21 |
require_once __DIR__ . '/public_html/index.php'; |
Také k dispozici: Unified diff
IDK let me try this configuration II