Skip to content

Instantly share code, notes, and snippets.

@yohangdev
Created May 30, 2016 08:00
Show Gist options
  • Save yohangdev/d4b8a0982ab1d7e2f246b2779b402559 to your computer and use it in GitHub Desktop.
Save yohangdev/d4b8a0982ab1d7e2f246b2779b402559 to your computer and use it in GitHub Desktop.
PHP Built-in Server Router Script for Laravel
<?php
if (file_exists($_SERVER["DOCUMENT_ROOT"] . $_SERVER["REQUEST_URI"])) {
return false;
} else {
require "public/index.php";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment