前台入口文件index.php
<?php
//前台入口
define('THINKPHP_PATH', '../ThinkPHP/');//底层的位置
define('APP_PATH', './home/');//定义项目位置
define('APP_DEBUG', true);//定义DEBUG开关
require_once THINKPHP_PATH.'ThinkPHP.php';
//echo 'hellow'; ?>
配置文件:
<?php
return array(
//'配置项'=>'配置值'
'DEFAULT_C_LAYER' => 'Controller', // 默认的控制器层名称
'URL_MODEL' => 1, // URL访问模式,可选参数0、1、2、3,代表以下四种模式:
);
?>
Controller下的IndexController.class.php文件:
<?php
namespace Home\Controller;
use Think\Controller;
class IndexController extends Controller {
public function index(){
echo "hello world";
}
}
浏览器调试结果:
这个路径http://localhost:8080/test/index.php是可以显示控制器方法中的欢迎信息的,
而http://localhost:8080/test/index.php/index和http://localhost:8080/test/index.php/index/index却提示了错误信息
:(
无法加载模块:Index
错误位置
FILE: C:\wamp\www\ThinkPHP\Library\Think\Dispatcher.class.php LINE: 172
TRACE
#0 C:\wamp\www\ThinkPHP\Library\Think\Dispatcher.class.php(172): E('???????????????...')
#1 C:\wamp\www\ThinkPHP\Library\Think\App.class.php(36): Think\Dispatcher::dispatch()
#2 C:\wamp\www\ThinkPHP\Library\Think\App.class.php(184): Think\App::init()
#3 C:\wamp\www\ThinkPHP\Library\Think\Think.class.php(120): Think\App::run()
#4 C:\wamp\www\ThinkPHP\ThinkPHP.php(96): Think\Think::start()
#5 C:\wamp\www\test\index.php(7): require_once('C:\wamp\www\Thi...')
#6 {main}
自从3.2之后thinkphp默认的控制器不再使用Action,而是使用了更贴近MVC模式的Controller。
如果你原来习惯用了Action,还是可以吧Controller修改成Action的
可以这样定义:
namespace Home\Action;
use Think\Action;
class IndexAction extends Action{}
然后,在配置文件config.php中,设置:
'DEFAULT_C_LAYER'=>'Action'
遂,把Controller修改成Action,还是一样的问题,我的天!
继续百度!
发现发现别人的目录结构和我的好像不一样!
仔细查看代码
define('APP_PATH', './home/');//定义项目位置
发现3.1生成的home项目目录下并没有Home目录
而3.2生成的home项目目录却多了一层Home目录
因此我们在URL地址上必须加上Home目录,也就是:http://localhost:8080/test/index.php/Home/Index/index(文件入口[index.php]/Home[默认]/控制器名[Index]/方法名[index])
浏览器粘贴访问,终于显示出那诱人可爱的hellow world