Page MenuHomePhorge

server.php
No OneTemporary

Authored By
Unknown
Size
548 B
Referenced Files
None
Subscribers
None

server.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';

File Metadata

Mime Type
text/x-php
Expires
Sat, Apr 4, 7:57 AM (1 w, 5 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
39/c8/28e08057ba1ff3663ad45afc7283
Default Alt Text
server.php (548 B)

Event Timeline