mirror of
https://github.com/ZSCGR/genshin-impart.git
synced 2026-08-13 07:03:43 +08:00
13 lines
177 B
PHP
13 lines
177 B
PHP
<?php
|
|
$file= __DIR__ . '/..'.$_SERVER["PHP_SELF"];
|
|
|
|
if(file_exists($file))
|
|
{
|
|
return false;
|
|
}
|
|
else
|
|
{
|
|
require_once __DIR__ . '/../index.php';
|
|
}
|
|
#echo $_SERVER["PHP_SELF"];
|