去掉 CI 框架中的 index.php
程序员文章站
2024-01-08 17:33:28
...
利用 url重写,将 index.php 隐藏。 使用 Apache 服务程序,支持 rewrite 在 CI 的根目录建一个 .htaccess 文件 内容: RewriteEngine on RewriteCond $1 !^(index/.php|images|robots/.txt) RewriteRule ^(.*)$ /index.php/$1 [L] // /index.php 这里根据自
利用 url重写,将 index.php 隐藏。
使用 Apache 服务程序,支持 rewrite
在 CI 的根目录建一个 .htaccess 文件
内容:
// /index.php 这里根据自己的目录填写
然后在 config.php 里修改
$config['index_page'] = "index.php";
去掉其中的值
推荐阅读
-
去掉 CI 框架中的 index.php
-
PHP开发框架kohana中处理ajax请求的例子_php实例
-
修改apache配置文件去除thinkphp url中的index.php(转)
-
thinkphp隐藏中url的index.php,thinkphpindex.php
-
CI框架源码阅读,系统常量文件constants.php的配置
-
yii去掉必填项中星号的方法
-
CI框架扩展系统核心类的方法分析,ci框架_PHP教程
-
Yii框架中 find findAll 查找出制定的字段的方法对比_php实例
-
PHP的Yii框架中过滤器相关的使用总结_php技巧
-
php ci框架中加载css和js文件失败的解决方法_PHP教程