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

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

Patricia Arquette
Patricia Arquette原创
2024-11-24 08:20:10751浏览

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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn