Home >Backend Development >PHP Tutorial >CakePHP根目录默认显示index.php。

CakePHP根目录默认显示index.php。

WBOY
WBOYOriginal
2016-06-23 14:38:501207browse

新做了个项目。想默认显示login.ctp。
该如何设置。。
本人纯新手。。还望大家见谅。。


回复讨论(解决方案)

在你项目的config/routes.php中修改

Router::connect('/', array('controller' => 'indexs', 'action' => 'index'));

把controller和action换成相应的就可以了

在你项目的config/routes.php中修改

Router::connect('/', array('controller' => 'indexs', 'action' => 'index'));

把controller和action换成相应的就可以了

谢谢。。谢谢。。

在你项目的config/routes.php中修改

Router::connect('/', array('controller' => 'indexs', 'action' => 'index'));

把controller和action换成相应的就可以了

两条router。。修改哪一个。只修改下面一个好像不管用吧。。


在你项目的config/routes.php中修改

Router::connect('/', array('controller' => 'indexs', 'action' => 'index'));

把controller和action换成相应的就可以了

两条router。。修改哪一个。只修改下面一个好像不管用吧。。
修改上面那个,以base path开始的



在你项目的config/routes.php中修改

Router::connect('/', array('controller' => 'indexs', 'action' => 'index'));

把controller和action换成相应的就可以了

两条router。。修改哪一个。只修改下面一个好像不管用吧。。
修改上面那个,以base path开始的

恩。。。好吧又有问题了。。
修改了以后。cake直接访问了controller。。跳过login.ctp了。。这是为什么。。

参数我也已经传过去了。。把home改成了 login




在你项目的config/routes.php中修改

Router::connect('/', array('controller' => 'indexs', 'action' => 'index'));

把controller和action换成相应的就可以了

两条router。。修改哪一个。只修改下面一个好像不管用吧。。
修改上面那个,以base path开始的

恩。。。好吧又有问题了。。
修改了以后。cake直接访问了controller。。跳过login.ctp了。。这是为什么。。

解决了。。解决了。谢谢。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn