问一个默认url问题
是不是CI默认的首页url是
http://example.cn/index.php/example/index
如何修改这个啊,,比如说,我想该他为/index/index http://example.cn/index.php/index/index 谢谢斑竹,
向问一下,
怎么实现在输入 http://example.cn 的时候
自动指向
http://example.cn/index.php/index/index
而不是http://example.cn/index.php/welcome/index 修改application/config/routes.php
$route['default_controller'] = "welcome";
改为
$route['default_controller'] = "index"; 其实,控制器最好不要用 index,我的做法是改成 home,这样可以避免一些冲突问题。 http://localhost/CodeIgniter/index.php/register
怎么把URL中的index.php去掉? 6# zhangjs
http://codeigniter.org.cn/forums/thread-442-1-1.html 修改application/config/routes.php
$route['default_controller'] = "welcome";
改为
$route['default_controller'] = "index";
visvoy 发表于 2009-8-31 08:51 http://codeigniter.org.cn/forums/images/common/back.gif
谢谢了。。呵呵呵。。。
页:
[1]