mirror of
https://gitee.com/technical-laohu/mpay.git
synced 2026-05-07 01:01:10 +08:00
10 lines
199 B
PHP
10 lines
199 B
PHP
<?php
|
|
|
|
if (is_file($_SERVER["DOCUMENT_ROOT"] . $_SERVER["SCRIPT_NAME"])) {
|
|
return false;
|
|
} else {
|
|
$_SERVER["SCRIPT_FILENAME"] = __DIR__ . '/index.php';
|
|
|
|
require __DIR__ . "/index.php";
|
|
}
|