Page 1 of 1
CodeIgniter Directory Structure Suggestions
Posted: Thu Jul 29, 2010 11:50 am
by buckit
So I am about to dive into CodeIgniter and have been reading about people changing the directory layout. Some people prefer the application folder to be separated out from the 'core' functions... seems some have even moved the core functions outside of the web root?
anyway... just thought I would ask what others on this forum are doing... mainly out of pure curiosity.
Re: CodeIgniter Directory Structure Suggestions
Posted: Thu Jul 29, 2010 3:47 pm
by VladSun
I do the same thing, mainly because it's the place CI directory should be (I mean outside the web root), because I have several web applications (sites/domains) using it and finally because it's easier to update/modify CI in a single directory.
Re: CodeIgniter Directory Structure Suggestions
Posted: Thu Jul 29, 2010 6:02 pm
by buckit
yeah... am wondering if I should restructure my apache server..
right now I have
[text] /websites
whatever.com
index.php[/text]
am thinking I should go to
[text] /websites
ci_core
whatever.com
ci_app
public_html
index.php
stuff.com
ci_app
public_html
index.php[/text]