從CodeIgniter URL 中刪除「index.php」
在CodeIgniter 中,預設情況下,URL 段包含「index.php」段包含「index.php」段,前導到不太吸引人且冗長的URL。這可以輕鬆糾正,以實現更簡化和直觀的用戶體驗。
使用.htaccess 進行Apache 設定
對於Apache Web 伺服器,建立一個「.htaccess」檔案在Web 根目錄中並包含以下程式碼:
RewriteEngine on RewriteCond !^(index\.php|[Javascript / CSS / Image root Folder name(s)]|robots\.txt) RewriteRule ^(.*)$ /index.php/ [L]
此程式碼指示伺服器重寫URL不符合特定異常,例如「index.php」或靜態檔案(例如JavaScript、CSS、圖像),並透過附加匹配段的「index.php」檔案重定向它們。
替代方法
以下URL 中提供了替代配置方法:
[CodeIgniter .htaccess 配置](http://snipplr.com/ view/5966/codeigniter-htaccess/)
以上是如何從 CodeIgniter URL 中刪除「index.php」?的詳細內容。更多資訊請關注PHP中文網其他相關文章!