index.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * 管理后台首页
  4. *
  5. * @version $Id: index.php 1 11:06 2010年7月13日Z tianya $
  6. * @package DedeCMS.Administrator
  7. * @copyright Copyright (c) 2007 - 2010, DesDev, Inc.
  8. * @license http://help.dedecms.com/usersguide/license.html
  9. * @link http://www.dedecms.com
  10. */
  11. if ( preg_match("#PHP (.*) Development Server#",$_SERVER['SERVER_SOFTWARE']) )
  12. {
  13. if ( $_SERVER['REQUEST_URI'] == dirname($_SERVER['SCRIPT_NAME']) )
  14. {
  15. header('HTTP/1.1 301 Moved Permanently');
  16. header('Location:'.$_SERVER['REQUEST_URI'].'/');
  17. }
  18. }
  19. require_once(dirname(__FILE__)."/config.php");
  20. require_once(DEDEINC.'/dedetag.class.php');
  21. $defaultIcoFile = dirname(__FILE__).'/inc/quickmenu.txt'; // 快捷菜单 by 小虎哥
  22. $myIcoFile = dirname(__FILE__).'/inc/quickmenu-'.$cuserLogin->getUserID().'.txt'; // 快捷菜单 by 小虎哥
  23. if(!file_exists($myIcoFile)) $myIcoFile = $defaultIcoFile;
  24. /*消息显示 by 小虎哥*/
  25. $query = "SELECT * FROM #@__diyforms LIMIT 1";
  26. $diyinfo = $GLOBALS['dsql']->GetOne($query);
  27. /*--end*/
  28. require(DEDEADMIN.'/inc/inc_menu_map.php');
  29. include(DEDEADMIN.'/templets/index2.htm');
  30. exit();