Table of Contents

code igniter

multiple sites, same code

Folders for the code igniter core.

Folders for the custom application.

Change in /var/www/myapp/index.php :

  $system_path = '../ci/system';

rewrite rules

<IfModule mod_rewrite.c>
    RewriteEngine on

    RewriteCond %{REQUEST_URI} ^system.*
    RewriteCond $1 !^(index\.php|images|robots\.txt|css)
    RewriteRule ^(.*)$   index.php?/$1  [L]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$   index.php?/$1  [L]
</IfModule>