https://www.codeigniter.com/download
アップロードしたディレクトリ内にあるindex.php を好きな位置に移動させる
RewriteBase / のところをインストールするディレクトリに書き換えます。
ファイル名を .htaccess として index.php と同じディレクトリにアップロード
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/system.*
RewriteRule ^(.*)$ index.php?/$1 [L]
RewriteCond %{REQUEST_URI} ^/application.*
RewriteRule ^(.*)$ index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
index.phpの下記を index.php から見た system/ディレクトリ application/ ディレクトリに書き換える
// 100行目あたり
$system_path = 'system';
// 117行目あたり
$application_folder = 'application';
// URL を指定する
$config['base_url'] = 'http://aaa.bbb.ccc.com/dddd/';
// index.php を削除する
$config['index_page'] = '';