index.php 708 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Typecho Blog Platform
  4. *
  5. * @copyright Copyright (c) 2008 Typecho team (http://www.typecho.org)
  6. * @license GNU General Public License 2.0
  7. * @version $Id: index.php 1153 2009-07-02 10:53:22Z magike.net $
  8. */
  9. /** 载入配置支持 */
  10. if (!defined('__TYPECHO_ROOT_DIR__') && !@include_once 'config.inc.php') {
  11. file_exists('./install.php') ? header('Location: install.php') : print('Missing Config File');
  12. exit;
  13. }
  14. /** 初始化组件 */
  15. \Widget\Init::alloc();
  16. /** 注册一个初始化插件 */
  17. \Typecho\Plugin::factory('index.php')->begin();
  18. /** 开始路由分发 */
  19. \Typecho\Router::dispatch();
  20. /** 注册一个结束插件 */
  21. \Typecho\Plugin::factory('index.php')->end();