Skip to content

Instantly share code, notes, and snippets.

@madalinignisca
Created April 13, 2016 13:40
Show Gist options
  • Save madalinignisca/5f24f5fa15c23e68fd94146d4a13b13c to your computer and use it in GitHub Desktop.
Save madalinignisca/5f24f5fa15c23e68fd94146d4a13b13c to your computer and use it in GitHub Desktop.
basic PHP router for built in server
<?php
if (!file_exists(__DIR__ . '/' . $_SERVER['REQUEST_URI'])) {
$_GET['_url'] = $_SERVER['REQUEST_URI'];
}
return false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment