加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
admin.php 530 Bytes
一键复制 编辑 原始数据 按行查看 历史
unknown 提交于 2016-07-21 23:51 . baijiacms v3
<?php
if((empty($_REQUEST['name'])||!empty($_REQUEST['name'])&&$_REQUEST['name']!='modules')&&!file_exists(str_replace("\\",'/', dirname(__FILE__)).'/config/install.link'))
{
header("location:install.php");
exit;
}
$mod='mobile';
$mname="public";
defined('SYSTEM_ACT') or define('SYSTEM_ACT', 'mobile');
if(empty($_REQUEST['do']))
{
$do='index';
}else
{
$do=$_REQUEST['do'];
}
if(!empty($do))
{
ob_start();
$CLASS_LOADER="driver";
require 'includes/baijiacms.inc.php';
ob_end_flush();
exit;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化