/application/config/config.php
$config[‘encryption_key’] =’パスワード’;
sessionを使用する場合、パスワードが必要
/application/config/database.php
$db[‘default’][‘hostname’] = ‘localhost’;
$db[‘default’][‘username’] = ‘dbにアクセス出来るユーザー’;
$db[‘default’][‘password’] = ‘上記のパスワード’;
$db[‘default’][‘database’] = ‘上記のデータベース名’;
index.php
define(‘ENVIRONMENT’, ‘developement|testing|production’);
開発が終わり公開する時は、production
開発する時はlogが見たいので、development
.htaccess
RewriteEngine On
RewriteBase /apic/
RewriteCond %{REQUEST_FILENAME} !^(.*).(gif|png|jpg|jpeg)$
RewriteCond $1 !^(index.php|images|table-images|js|robots.txt|css)
RewriteRule ^(.*)$ /apic/index.php?/$1 [L]
サブディレクトリー名apicの場合。イメージファイルはrewirteの影響を受けないようにしないと、