CI框架如何删除地址栏的 index.php
发布日期:2021-06-30 19:24:03 浏览次数:2 分类:技术文章

本文共 1327 字,大约阅读时间需要 4 分钟。

 默认 CI 框架显示地址是

去掉index.php这样会更好些。

 

1.修改Http.conf的

LoadModule rewrite_module modules/mod_rewrite.so

去掉注释

 

2.ci根目录增加.htaccess文件

RewriteEngine On RewriteBase /ci #Removes access to the system folder by users. #Additionally this will allow you to create a System.php controller, #previously this would not have been possible. #'system' can be replaced if you have renamed your system folder. RewriteCond %{REQUEST_URI} ^system.* RewriteRule ^(.*)$ /index.php?/$1 [L] #When your application folder isn't in the system folder #This snippet prevents user access to the application folder #Submitted by: Fabdrol #Rename 'application' to your applications folder name. RewriteCond %{REQUEST_URI} ^application.* RewriteRule ^(.*)$ /index.php?/$1 [L] #Checks to see if the user is attempting to access a valid file, #such as an image or css document, if this isn't true it sends the #request to index.php RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?/$1 [L]
# If we don't have mod_rewrite installed, all 404's # can be sent to index.php, and everything works as normal. # Submitted by: ElliotHaughin ErrorDocument 404 /index.php

.htaccess文件内容

 

注意winodws下不好直接增加 要有技巧的 可以参看我另一篇文章

 

3.刷新地址栏

  已经可以看了

转载地址:https://linuxstyle.blog.csdn.net/article/details/6602610 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:expires与etag控制页面缓存的优先级
下一篇:配置MySQL主从复制

发表评论

最新留言

能坚持,总会有不一样的收获!
[***.219.124.196]2024年04月08日 14时49分01秒

关于作者

    喝酒易醉,品茶养心,人生如梦,品茶悟道,何以解忧?唯有杜康!
-- 愿君每日到此一游!

推荐文章