とあるエンジニアの備忘録

SE・コンサルタントの備忘録

CodeIgniter のインストール

 

 

 

 

CodeIgniter 

http://www.ci-guide.info/

http://codeigniter.jp/user_guide_ja/toc.html

http://codeigniter.jp/user_guide_ja/installation/index.html

download

http://ellislab.com/codeigniter/user-guide/installation/downloads.html

 

htaccess の設定

RewriteEngine on

RewriteCond $1 !^(index\.php|images|javascripts|stylesheets|robots\.txt|favicon\.ico)

RewriteRule ^(.*)$ /index.php/$1 [L]

RewriteEngine onRewriteCond $1 !^(index\.php|images|javascripts|stylesheets|robots\.txt|favicon\.ico)

RewriteRule ^(.*)$ index.php?/$1 [L]

ーーーーーーーーーーーーーーーー

 

ll /var/www/dev/webapp/application/config/