二级域名再绑定ucenter目录,修改ucenter的index.php加上域名识别代码,条件判断如果不是ucenter的域名就执行农场的qqfarm.php中的代码,否则跳过,执行原代码,就行了
例如:- <?php
- switch ($_SERVER['HTTP_HOST']) {
- case 'farm.a.com':
- /*
- qqfarm.php代码开始:
- */
- # QQFarm interface
- # Modify by seaif@zealv.com
- include_once("common.php");
- realname_set($_SGLOBAL['supe_uid'], $_SGLOBAL['supe_username']);
- realname_get();
- $qfCharset = $_SC['charset'] ? strtolower($_SC['charset']) : 'utf-8';
- if(!@include('qqfarm/data/cache/qsc.php')) {
- @include('qqfarm/data/qsc.php');
- }
- include template('qqfarm/view/api_uchome/main.' . $qfCharset);
- /*
- qqfarm.php代码结束:
- */
- break;
- default:
- /*
- 原index.php代码开始:
- */
- <?php
- /*
- [UCenter Home] (C) 2007-2008 Comsenz Inc.
- $Id: index.php 13003 2009-08-05 06:46:06Z liguode $
- */
- include_once('./common.php');
- if(is_numeric($_SERVER['QUERY_STRING'])) {
- showmessage('enter_the_space', "space.php?uid=$_SERVER[QUERY_STRING]", 0);
- }
- //二级域名
- if(!isset($_GET['do']) && $_SCONFIG['allowdomain']) {
- $hostarr = explode('.', $_SERVER['HTTP_HOST']);
- $domainrootarr = explode('.', $_SCONFIG['domainroot']);
- if(count($hostarr) > 2 && count($hostarr) > count($domainrootarr) && $hostarr[0] != 'www' && !isholddomain($hostarr[0])) {
- showmessage('enter_the_space', $_SCONFIG['siteallurl'].'space.php?domain='.$hostarr[0], 0);
- }
- }
- if($_SGLOBAL['supe_uid']) {
- //已登录,直接跳转个人首页
- showmessage('enter_the_space', 'space.php?do=home', 0);
- }
- if(empty($_SCONFIG['networkpublic'])) {
-
- //实名
- foreach ($spacelist as $key => $value) {
- realname_set($value['uid'], $value['username'], $value['name'], $value['namestatus']);
- }
- realname_get();
-
-
-
- } else {
- //总会员
- $spacecount = $_SGLOBAL['db']->result($_SGLOBAL['db']->query("SELECT COUNT(*) FROM ".tname('space')), 0);
- $cachefile = S_ROOT.'./data/cache_index.txt';
- $cachetime = @filemtime($cachefile);
-
- $spacelist = array();
- if($_SGLOBAL['timestamp'] - $cachetime > 10) {
- //20位热门用户
- $query = $_SGLOBAL['db']->query("SELECT s.*, sf.resideprovince, sf.residecity
- FROM ".tname('space')." s
- LEFT JOIN ".tname('spacefield')." sf ON sf.uid=s.uid
- ORDER BY s.lastlogin DESC LIMIT 0,10");
- while ($value = $_SGLOBAL['db']->fetch_array($query)) {
- $spacelist[] = $value;
- }
- swritefile($cachefile, serialize($spacelist));
- } else {
- $spacelist = unserialize(sreadfile($cachefile));
- }
- //大家的最新动态
- $feedlist = array();
- $query = $_SGLOBAL['db']->query("SELECT * FROM ".tname('feed')." WHERE friend='0' ORDER BY dateline DESC LIMIT 0,20");
- while ($value = $_SGLOBAL['db']->fetch_array($query)) {
- realname_set($value['uid'], $value['username']);
- $feedlist[] = $value;
- }
- //格式化动态
- foreach ($feedlist as $key => $value) {
- $feedlist[$key] = mkfeed($value);
- }
-
- //应用
- $myappcount = 0;
- $myapplist = array();
- if($_SCONFIG['my_status']) {
- $myappcount = $_SGLOBAL['db']->result($_SGLOBAL['db']->query("SELECT COUNT(*) FROM ".tname('myapp')." WHERE flag>='0'"), 0);
- if($myappcount) {
- $query = $_SGLOBAL['db']->query("SELECT appid,appname FROM ".tname('myapp')." WHERE flag>=0 ORDER BY flag DESC, displayorder LIMIT 0,7");
- while ($value = $_SGLOBAL['db']->fetch_array($query)) {
- $myapplist[] = $value;
- }
- }
- }
- $_TPL['css'] = 'network';
- include template("index");
-
- }
- /*
- 原index.php代码结束:
- */
- break;
- }
- ?>
复制代码 |