标签:
路由
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????
标签:
原文地址:http://www.cnblogs.com/postbird/p/5474555.html