70208d2157
Shift automatically applies the Laravel coding style - which uses the PSR-12 coding style as a base with some minor additions. You may customize the code style applied by configuring [Pint](https://laravel.com/docs/pint), [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer), or [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) for your project root. For more information on customizing the code style applied by Shift, [watch this short video](https://laravelshift.com/videos/shift-code-style).
19 lines
541 B
PHP
19 lines
541 B
PHP
<?php
|
|
|
|
/**
|
|
* Laravel - A PHP Framework For Web Artisans
|
|
*
|
|
* @author Taylor Otwell <taylor@laravel.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';
|