首页 > 后端开发 > php教程 > 如何从 CodeIgniter 2 中的 URL 中删除 index.php?

如何从 CodeIgniter 2 中的 URL 中删除 index.php?

Patricia Arquette
发布: 2024-11-24 08:20:10
原创
792 人浏览过

How to Remove index.php from URLs in CodeIgniter 2?

从 Codeigniter 2 中的 URL 中删除 index.php

许多开发人员在从 Codeigniter 2 中的 URL 中删除 index.php 时遇到了困难。从 Codeigniter 1.7 开始可能不适用,您可以采取特定步骤来实现

解决方案:

要从 Codeigniter 2 中的 URL 中删除 index.php,请尝试以下操作:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /(site)/

RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/ [L]

RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/ [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/ [L]
</IfModule>
登录后复制

说明:

此更新的代码块修改了 RewriteBase 指令包含站点文件夹的名称,在此示例中假定为“(site)”。通过指定正确的站点文件夹,服务器将被引导到适当的位置以在请求时搜索index.php文件。

以上是如何从 CodeIgniter 2 中的 URL 中删除 index.php?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板