標籤:
- 很久很久以前學習Codeigniter的筆記記錄,很隨意,但都是自己記錄的,希望對需要的人有所協助。
- 本文使用word2013編輯並發布
- Postbird | There I am , in the world more exciting!
- Postbird personal website : http://www.ptbird.cn
路由
1、更改預設路由檔案
????application/config/routes.php
????預設控制器
????
2、偽靜態
????controllers/article.php
????????
????訪問 show_article_id 方法
????????localhost/acodeigniter/index.php/article/show_article_id/
????通過更改路由,進行偽靜態。(reg處理)
????更改之後訪問
????????localhost/acodeigniter/index.php/news/4.html
?
方便專案管理(日期/20150311/4.html)採用如下匹配
?
3、apache 重寫規則---隱藏入口檔案
????將system/.htaccess檔案複製到根目錄下
????????apache需要支援重寫
????????????httpd.conf檔案
????????????????LoadModule rewrite_module modules/mod_rewrite.so
????????.htaccess檔案
????????????RewriteEngine on
RewriteCond $1 !^(index\.php|robots|stafile|upload|\.txt)
RewriteRule ^(.*)$ /acodeigniter/index.php/$1 [L]
????訪問
????????http://localhost/acodeigniter/news/20160101/4.html????
Codeigniter入門學習筆記09—路由