Update README.md

Add a note about index.php, since this seems to be causing no end of confusion on the forum!
This commit is contained in:
Instructor, Computer Systems Technology 2016-06-25 12:58:05 -07:00 committed by GitHub
parent 3844c07911
commit 1dd277a955

View File

@ -16,6 +16,15 @@ while still keeping as many of the things intact that has made people love the f
More information about the plans for version 4 can be found in [the announcement](http://forum.codeigniter.com/thread-62615.html) on the forums.
## Important Change with index.php
index.php is no longer in the root of the project! It has been moved inside the *public* folder,
for better security and separation of components.
This means that you should configure your web server to "point" to your project's *public* folder, and
not to the project root. A better practice would be to configure a virtual host to point there. A poor practice would be to point your web server to the project root and expect to enter *public/...*, as the rest of your logic and the
framework are exposed.
## Repository Management
We use Github issues to track **BUGS** and to track approved **DEVELOPMENT** work packages.
We use our [forum](http://forum.codeigniter.com) to provide SUPPORT and to discuss