mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 23:42:48 +08:00
9 lines
148 B
PHP
9 lines
148 B
PHP
<?php
|
|
// $Id$
|
|
|
|
if (is_file($_SERVER["DOCUMENT_ROOT"] . $_SERVER["SCRIPT_NAME"])) {
|
|
return false;
|
|
} else {
|
|
require __DIR__ . "/index.php";
|
|
}
|