標籤:style blog class code c java
和朋友在做一個小網站,用到了CI架構,之前測試都是在windows上,隱藏index.php也相對比較簡單。但伺服器是ubuntu系統,需要配置一下,根據網上看到的一些教程,結合自己電腦的特點,記錄步驟如下:
1.伺服器環境: ubuntu12.04 64位
2.開啟mod_rewrite模組:
修改 /etc/apache2/sites-enabled/000-default,將其中的:AllowOverride None 修改為:AllowOverride All,如下:
DocumentRoot /var/www <Directory /> Options FollowSymLinks AllowOverride All </Directory> <Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny allow from all </Directory>
重啟apache2:
sudo service apache2 restart
3.在CI的根目錄下,即在system的同級目錄下,建立.htaccess檔案:
RewriteEngine onRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteCond $1 !^(index\.php|index\.html|images|robots\.txt)RewriteRule ^(.*)$ /index.php/$1 [L]
如果CI目錄不是在www的根目錄下,例如我的是:http://localhost/iter/index.php/,第四行需要改寫為RewriteRule ^(.*)$ /iter/index.php/$1 [L]。
4.將CI中設定檔(system/application/config/config.php)中,將 $config[‘index_page‘] = "index.php"; 中的index.php去掉。
//$config[‘index_page‘] = "index.php";$config[‘index_page‘] = ""; 。
大功告成,小夥伴試試看!!!