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.
|
- <?php
-
- $path = __DIR__;
- $separator = DIRECTORY_SEPARATOR;
- $uri = urldecode(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH));
-
- if (is_file("{$path}{$separator}public{$separator}{$uri}")) {
- return false;
- }
-
- require_once "{$path}{$separator}public{$separator}index.php";
|