總結隱藏index.php檔案的步驟
1.開啟apache的mod_rewrite模組
去掉LoadModule rewrite_module modules/mod_rewrite.sotory".... AllowOverride All”
2.在專案中的/protected/config/main.php中加入程式碼:
'components'=>array(
'urlManager'=>array(
'urlFormat'=>' path',
'showScriptName'=>false,///留意false不要用引號
'rules'=>array(
index' ,
),
由 IndexIgnore */ *
RewriteEngine on
# if a directory or a file exists, 觸
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward it .php .php
複製程式碼
這樣就可以實現隱藏index.php入口檔案了。