1 Star 0 Fork 5

潮州話正音正字促進會/进云JYS框架

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.php 1.72 KB
一键复制 编辑 原始数据 按行查看 历史
<?php
/*
* [JINYUN!] (C)2001-2099 Jinyunweb.com
* This is NOT a freeware, use is subject to license terms
* $Id: 2017-12-13 03:39:35 apple $
*/
require_once './core/core.php';
if($_SERVER['HTTP_HOST']==DOMAIN){
//如果当前域名为系统主域名,自动转向到系统后台
if($_AR['system']['istakeover']==1 && $_AR['system']['takeoverplugin']){
header('Location: ./custom/index.php');exit;
}else{
header('Location: ./manage/index.php');exit;
}
}
//优化域名指定页面
$domain=pdo_get('core_domain',array('domain'=>$_SERVER['HTTP_HOST']),array('url','is_zhu'));
$query=$domain['url'];
if($query){
if($domain['is_zhu']){
$url=$query;
}else{
$query=explode('?',$query,2);
$query=$query['1'];
$url=HTTP.$_SERVER['HTTP_HOST'].'/custom/index.php?'.$query;
}
header('location:'.$url);
exit;
}
//站点独立域名
$check=pdo_getcolumn('core_accounts',array('domain'=>trim($_SERVER['HTTP_HOST']),'domain_to'=>0),'uniacid');
if($check){
$url=HTTP.$_SERVER['HTTP_HOST'].WEB_ROOT.'custom/index.php?i='.$check.'&plugin=core&action=home.welcome';
header('location:'.$url);
exit;
}
/*if(USER_DOMAIN && strexists($_SERVER['HTTP_HOST'],USER_DOMAIN)){
//启用给用户分配独立域名,检查域名是否为系统分配的独立域名
$uniacid=str_replace(USER_DOMAIN,'',$_SERVER['HTTP_HOST']);
$uniacid=intval($uniacid);
if($uniacid){
//成功获得站点ID,存入$_RQ中备用
$_RQ['i']=$uniacid;
require 'custom/index.php';
}else{
exit;
}
}*/
//没有开启分配独立域名功能或者给域名绑定URL,此处跳转管理端首页
if($_AR['system']['istakeover']==1 && $_AR['system']['takeoverplugin']){
header('Location: ./custom/index.php');exit;
}else{
header('Location: ./manage/index.php');
}
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/HiTeochew/jys_into_cloud.git
git@gitee.com:HiTeochew/jys_into_cloud.git
HiTeochew
jys_into_cloud
进云JYS框架
master

搜索帮助