CodeIgniter Forums
CI only support one level sub-folders? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: CI only support one level sub-folders? (/showthread.php?tid=3882)



CI only support one level sub-folders? - El Forum - 10-26-2007

[eluser]jackIgniter[/eluser]
I have a admin sub folder in my CI controllers folder. And it works fine until I added one more folder above my admin folder.

For example:

Code:
http://localhost/mysite/index.php/folder/admin_folder/controllerName/method

Then it does not work.

But if I delete the folder that is above my admin folder, like:

Code:
http://localhost/mysite/index.php/admin_folder/controllerName/method

It will work again.

It seems CI only support one level sub-folder in controller. Am I right?


CI only support one level sub-folders? - El Forum - 10-26-2007

[eluser]Rick Jolly[/eluser]
Yep, but here is a possible solution if you're interested:http://ellislab.com/forums/viewthread/56100/


CI only support one level sub-folders? - El Forum - 10-26-2007

[eluser]jackIgniter[/eluser]
Great! Thanks