用户
 找回密码
 入住 CI 中国社区
搜索
查看: 3083|回复: 9
收起左侧

[已解决] 为什么老是显示这个页面?

[复制链接]
发表于 2010-8-21 20:55:27 | 显示全部楼层 |阅读模式
Welcome to CodeIgniter!
The page you are looking at is being generated dynamically by CodeIgniter.
If you would like to edit this page you'll find it located at:system/application/views/welcome_message.php
The corresponding controller for this page is found at:system/application/controllers/welcome.php
If you are exploring CodeIgniter for the very first time, you should start by reading the User Guide.

Page rendered in 0.0280 seconds
发表于 2010-8-21 21:05:26 | 显示全部楼层
贴你的代码,以及你访问的url
 楼主| 发表于 2010-8-21 21:06:46 | 显示全部楼层
全是默认的。
 楼主| 发表于 2010-8-21 21:07:40 | 显示全部楼层
home.php
PHP复制代码
<?php
 
 
class Home extends Controller{
    function __construct(){
        parent::controller();  
    }
    function index(){
        $this->load->view('index');
    }
 
 
 
}
 
 
?>
复制代码
 楼主| 发表于 2010-8-21 21:08:49 | 显示全部楼层
views/index.php


PHP复制代码
<?php
 
echo "成功";
 
 
?>
复制代码
发表于 2010-8-21 21:18:36 | 显示全部楼层
请使用这个访问
http://127.0.0.1/ci路径/index.php/home
 楼主| 发表于 2010-8-21 21:34:52 | 显示全部楼层
这样是成功了,可是怎么设置让他默认就直接显示呢?
发表于 2010-8-21 21:54:13 | 显示全部楼层
 楼主| 发表于 2010-8-21 22:22:57 | 显示全部楼层
谢谢版主
 楼主| 发表于 2010-8-21 22:38:39 | 显示全部楼层
我明白了,默认显示的话,
改这里。
$route['default_controller'] = "";

本版积分规则