Why are CodeIgniter application files in the public_html folder? Why are CodeIgniter application files in the public_html folder? codeigniter codeigniter

Why are CodeIgniter application files in the public_html folder?


The developers of CodeIgniter, EllisLabs, have set up the framework in this way for ease of use. It means that people wishing to try out the framework don't have to fiddle with any permissions settings on their server.

Of course on a production server, you are absolutely right, putting your PHP files in the public HTML folder is not a good idea.

A better way to organise your folders would be:

  • root
    • code_igniter
      • application_folder
        • config
        • controllers
        • models
        • ...
      • system_folder
    • public_html
      • css
      • js
      • imagesindex.php.htaccess

The only other change to be made here would be to change line 26 of index.php to read:

$system_folder = "../../code_igniter/system-folder";


You can add the following rule to your .htaccess file to further protect the system and application directories from being viewed (sends a 403 Forbidden error):

# Protect application and system files from being viewedRewriteRule ^(application|system) - [F,L]


With this structure:

/application/system/public   index.php 

You can change in public/index.php these two settings and you are done

$application_folder = '../application';$system_path = '../system';