ci框架隱藏index.php的方法:先修改apache設定檔;然後建立htaccess檔;接著修改Ci設定檔;最後重新啟動apache即可。
推薦:《PHP影片教學》
#開啟重寫模組conf/httpd.conf
去掉前面的#
LoadModule rewrite_module modules/mod_rewrite.so
對於Ubuntu
,需要在apache安裝目錄下的mods-enabled 資料夾中建立軟連線。進入/mods-enabled 下,
-s ../mods-available/rewrite.load rewrite.load # 要确保 ../mods-available/rewrite.load 文件存在,不存在需要安装rewrite模块
註:apache安裝目錄下:mods-available---未啟用的模組,mods-enabled----已啟用的模組
AllowOverride None 修改為AllowOverride All
可以在apache的設定檔conf/httpd.conf 結尾加上以下程式碼,或是在sites- enabled 資料夾下新建個.conf 文件,文件名隨意,也可像mods-enabled/ 下那樣建立連結。
Alias /athena "/home/liuqian/workspace/athena/" # 依据实际情况改为自己的路径<Directory "/home/liuqian/workspace/athena/"> # 依据实际情况改为自己的路径 Options Indexes MultiViews FollowSymLinks AllowOverride All # 主要是这个 Order allow,deny Allow from all</Directory>###註:apache安裝目錄下:sites-available---未載入的設定文件,sites-enabled----已載入的設定檔######2. 新增.htaccess 文件######進入到專案資料夾下,在index.php 所在的目錄下建立.htaccess 檔案############### 檔案中寫如下:###
/%{REQUEST_FILENAME} !-%{REQUEST_FILENAME} !- !^(index\.php| index.php# ##3. 修改Ci設定檔application/config/config.php###
$config['index_page'] = "index.php";###改為:###
$config['index_page'] = "";###4. 重啟apache 就ok了。 ###
sudo apachectl restart # 这里是ubuntu的重启命令### ###
以上是ci框架如何隱藏index.php的詳細內容。更多資訊請關注PHP中文網其他相關文章!