CodeIgniter 中的清理URL:如何從路徑中刪除「index.php」
在CodeIgniter 中,「index.php」段位於URL 可能很難看。要獲得乾淨的、非 index.php 格式的 URL,您可以利用 Apache 的重寫功能。
使用.htaccess 進行Apache 重寫
將.htaccess 檔案放入您的應用程式的根Web 目錄並新增以下內容:
RewriteEngine on RewriteCond !^(index\.php|[Javascript / CSS / Image root Folder name(s)]|robots\.txt) RewriteRule ^(.*)$ /index.php/ [L]
此規則可確保請求不針對特定檔案(例如JavaScript、CSS、映像或robots.txt)將被重定向到附加原始 URI 的 index.php。
改進的重寫版本
可以找到處理URL 參數和特殊字元的替代重寫版本這裡:
http://snipplr. com/view/5966/codeigniter-htaccess/
以上是如何使用 Apache 的重寫功能從 CodeIgniter URL 中刪除「index.php」?的詳細內容。更多資訊請關注PHP中文網其他相關文章!