在 Codeigniter 中,我的文件是,
/application (folder)
/controllers (folder)
/welcome.php
/upload (folder)
/a.php
/b.php
/index.php
如果我调用http://localhost/you/upload/a
它显示正确的控制器(a)。它http://localhost/you/
显示welcome.php(默认控制器)。
但如果我称它为http://localhost/you/upload/
显示相同welcome.php
(默认控制器)。不显示index.php
。
我想要它显示index.php
或404 error
或url redirect to default controller
帮我。