代码拉取完成,页面将自动刷新
同步操作将从 Gitee 极速下载/zdir 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?php
/**
*
* Zdir首页入口文件
* @author xiaoz<xiaoz93@outlook.com>
* @version null
*/
error_reporting(E_ALL^E_NOTICE^E_WARNING^E_DEPRECATED);
//获取控制器
$c = @$_GET['c'];
//进行过滤
$c = strip_tags($c);
//读取版本号
$version = @file_get_contents("./functions/version.txt");
//载入配置文件
if( !file_exists('./config.php') ) {
exit('<h3>配置文件不存在,请将config.simple.php复制一份并命名为config.php</h3>');
}
require("./config.php");
//载入zdir类
include_once("./functions/zdir.class.php");
//获取密码
$password = $config['password'];
//获取用户名
$username = $config['username'];
//如果开启了验证
if(@$config['auth'] === TRUE){
//基本验证
if ( ($_SERVER['PHP_AUTH_PW'] !== $password) || ($_SERVER['PHP_AUTH_USER'] !== $username) ){
header('WWW-Authenticate: Basic realm="Please verify."');
header('HTTP/1.0 401 Unauthorized');
exit('权限不足!');
}
}
//根据不同的请求载入不同的方法
//如果没有请求控制器
if((!isset($c)) || ($c == '')){
//载入主页
include_once("./functions/home.php");
}
//不允许访问的控制器
// else if($c == 'indexes'){
// echo '非法请求!';
// exit;
// }
//如果是文件管理器
else if($c == 'admin') {
//如果是放在顶级目录下
if( $config['thedir'] == '') {
header("Location: ./functions/admin.php");
exit;
}
else{
header("Location: ./zdir/functions/admin.php");
exit;
}
}
else{
include_once("./functions/".$c.'.php');
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。