ci url怎麼去掉index.php

藏色散人
發布: 2023-03-09 18:46:01
原創
1681 人瀏覽過

ci url去掉index.php的方法:先修改設定檔;然後搜尋htaccess將AllowOverride None改為「AllowOverride All」;最後建立「.htaccess」檔案即可。

ci url怎麼去掉index.php

本文操作環境:windows7系統、CodeIgniter3.0版,DELL G3電腦

去掉index.php:

先修改設定文件, $config['index_page'] = ' '; 設定空 

然後修改Apache,搜尋 #htaccess  將 AllowOverride None 改為 AllowOverride All

搜索 rewrite_module modules/mod_rewrite.so  打開去掉

#在CI的根目錄下,在system的同級目錄下,建立.htaccess檔案(建立.htaccess 用Notepad ),寫入如下內容: 

RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^( .*)$ /codeIgniter/index.php/$1 [L]

#我的專案位址是 http://localhost/codeIgniter/index.php/ user

重啟Apache直接存取 http://localhost/codeIgniter/user  

推薦:《PHP影片教學

以上是ci url怎麼去掉index.php的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!