サーバアップで最初のつまづき
サーバにアップしてつまづいた。
No input file specified.
が表示して動かず
.htaccessを
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt|css|user_guide|.+\.gif$|.+\.jpg$|.+\.png$|.+\.js$)
RewriteRule ^(.*)$ /CodeIgniter/index.php/$1 [L]
↓↓↓
RewriteRule ^(.*)$ /CodeIgniter/index.php?$1 [L]
で解決した