You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
273B

  1. <?php
  2. $path = __DIR__;
  3. $separator = DIRECTORY_SEPARATOR;
  4. $uri = urldecode(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH));
  5. if (is_file("{$path}{$separator}public{$separator}{$uri}")) {
  6. return false;
  7. }
  8. require_once "{$path}{$separator}public{$separator}index.php";

Powered by TurnKey Linux.