Page MenuHomePhorge

server.php
No OneTemporary

Authored By
Unknown
Size
563 B
Referenced Files
None
Subscribers
None

server.php

<?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @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, 3:59 AM (2 h, 45 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
8d/9f/f218d021104f4fc269ec435a3850
Default Alt Text
server.php (563 B)

Event Timeline