mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-17 13:38:20 +01:00
29 lines
758 B
PHP
29 lines
758 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Cachet HQ <support@cachethq.io>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
/**
|
|
* Laravel - A PHP Framework For Web Artisans.
|
|
*
|
|
* @author Taylor Otwell <taylorotwell@gmail.com>
|
|
*/
|
|
$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';
|