- 很久很久以前学习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????
时间: 2024-10-03 22:32:29