mirror of
https://github.com/tznb1/TwoNav.git
synced 2025-08-10 08:51:49 +00:00
12 lines
196 B
PHP
12 lines
196 B
PHP
<?php
|
|
|
|
//get请求载入页面
|
|
if($_SERVER['REQUEST_METHOD'] === 'GET'){
|
|
require DIR."/system/templates.php";
|
|
require($index_path);
|
|
exit;
|
|
}
|
|
|
|
msg(-1,'免费版不支持此功能');
|
|
?>
|