インストール

CodeIgniterをpublic_html/ciに展開します。
つぎに、下のファイルを設定します。
自分のパスに合わせて変更してください。

Filename: /ci/application/config/config.php

$config['base_url']     = 'http://sakura.tsukuba-g.ac.jp/~yamanoi/ci/';

$config['url_suffix'] = ".html";

$config['enable_hooks'] = TRUE;

$config['encryption_key'] = "yamanoi's keyword";

$config['cookie_domain']        = "sakura.tsukuba-g.ac.jp";
$config['cookie_path']          = "/~yamanoi/ci/";

$config['csrf_protection'] = TRUE;

プリティURLの設定をします。

Filename: /ci/.htaccess

RewriteEngine ON
RewriteBase /~yamanoi/ci/

RewriteCond $1 !^(index\.php|css|robots\.txt|user_guide|user_guide_ja|.+\.gif$|.+\.jpg$|.+\.png$|.+\.js$)
RewriteRule ^(.*)$ index.php/$1 [L]