求助:本地测试没问题,上传到空间首页无法显示内容

浏览:341 发布日期:2017/02/21 分类:求助交流 关键字: 首页无法显示
无法显示首页内容了,本地测试没有问题。<?php


if(version_compare(PHP_VERSION,'5.3.0','<'))  die('require PHP > 5.3.0 !');

/**
 * 系统调试设置
 * 项目正式部署后请设置为false
 */
define('APP_DEBUG', true );
define('BIND_MODULE','Home');

/**
 * 应用目录设置
 * 安全期间,建议安装调试完成后移动到非WEB目录
 */
define ( 'APP_PATH', './Application/' );

if(!is_file(APP_PATH . 'User/Conf/config.php')){
    header('Location: ./install.php');
    exit;
}

/**
 * 缓存目录设置
 * 此目录必须可写,建议移动到非WEB目录
 */
define ( 'RUNTIME_PATH', './Runtime/' );

/**
 * 引入核心入口
 * ThinkPHP亦可移动到WEB以外的目录
 */
require './ThinkPHP/ThinkPHP.php';
最佳答案
评论( 相关
后面还有条评论,点击查看>>