2014-11-16 22:26:08 +00:00
|
|
|
<?php
|
2015-04-18 16:55:51 +01:00
|
|
|
|
2015-04-19 08:52:39 +01:00
|
|
|
/*
|
|
|
|
* This file is part of Cachet.
|
|
|
|
*
|
2015-05-25 17:59:08 +01:00
|
|
|
* (c) Cachet HQ <support@cachethq.io>
|
2015-04-19 08:52:39 +01:00
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
2015-03-20 18:30:45 -06:00
|
|
|
/**
|
2015-03-20 18:32:24 -06:00
|
|
|
* Laravel - A PHP Framework For Web Artisans.
|
2015-03-20 18:30:45 -06:00
|
|
|
*
|
|
|
|
* @author Taylor Otwell <taylorotwell@gmail.com>
|
|
|
|
*/
|
|
|
|
$uri = urldecode(
|
2015-03-20 18:32:24 -06:00
|
|
|
parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
|
2015-03-20 18:30:45 -06:00
|
|
|
);
|
2014-11-16 22:26:08 +00:00
|
|
|
|
|
|
|
// 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.
|
2015-03-20 18:32:24 -06:00
|
|
|
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
|
|
|
|
return false;
|
2014-11-16 22:26:08 +00:00
|
|
|
}
|
|
|
|
|
2015-03-20 18:30:45 -06:00
|
|
|
require_once __DIR__.'/public/index.php';
|