CI 架構隱藏index.php-ubuntu

來源:互聯網
上載者:User

標籤: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‘] = ""; 。

 

大功告成,小夥伴試試看!!!

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.