使用 .htaccess 文件删除 CodeIgniter 中的 index.php
Posted
技术标签:
【中文标题】使用 .htaccess 文件删除 CodeIgniter 中的 index.php【英文标题】:Removing index.php in CodeIgniter using .htaccess file 【发布时间】:2013-03-07 00:54:46 【问题描述】:我目前正在使用 CodeIgniter 开发一个网站,最近偶然发现了路由和 .htaccess 问题。
基本上,我的简单网站的结构(为简单起见,我们将我的项目称为“CIExample”)如下:
-首页 -关于我们 -我们的服务 -新闻 -联系我们
我使用 Page 控制器实现的。该控制器有 5 个函数调用各自页面的视图,即:
Home(),它调用视图“Home” About(),它调用视图“关于我们”等等..
以前,要访问“主页”,我需要在 url 窗口中输入 http://localhost/CIExample/index.php/page/home
,但在设置以下路由后,我能够删除“页面”(类名)部分:
$route['default_controller'] = 'page/home';
$route['home'] = 'page/home';
$route['about'] = 'page/about';
$route['service'] = 'page/service';
$route['news'] = 'page/news';
$route['contact'] = 'page/contact';
但是,当我尝试删除“index.php”时,棘手的部分就来了。
我希望能够通过输入http://localhost/CIExample/home
来访问主页。
所以我在CI论坛/教程/堆栈溢出上做了很多搜索,找到了一些.htaccess文件的代码:
RewriteEngine on
RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
或http://ellislab.com/forums/viewthread/197675/#929904 我尝试了两种代码,但没有一个有效..
http://localhost/CIExample/home
会引导我到 404 not found 页面,但http://localhost/CIExample/index.php/home
可以正常工作。
我想知道哪里出了问题?是我的 routes.php 或 .htaccess 还是两者兼而有之? 谢谢。
注意:我还更改了我的 'config/config.php' 文件 -> $config['index_page'] = '';
编辑:
终于成功了!
在调整 config 文件夹中的 config.php 文件并设置以下$config['uri_protocol'] = 'PATH_INFO';
(来自'AUTO')。
可用值:
| 'AUTO' Default - auto detects
| 'PATH_INFO' Uses the PATH_INFO
| 'QUERY_STRING' Uses the QUERY_STRING
| 'REQUEST_URI' Uses the REQUEST_URI
| 'ORIG_PATH_INFO' Uses the ORIG_PATH_INFO
不知道有什么不同,但根据http://www.jotorres.com/2011/12/removing-index-php-from-url-in-codeigniter/ 中的一位 cmets,相同的代码可能/可能无法在生产服务器中工作。
谁能解释一下原因?
【问题讨论】:
CI 论坛的代码应该可以工作。这就是我使用的。你可能需要定义你的基础,因为你在一个子目录中——RewriteBase /CIExample/ 请标记对您有帮助的答案。它帮助了作者和观众。 【参考方案1】:您只需将其粘贴到您的 .htaccess 文件中:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
</IfModule>
并对您的 application/config/config.php 文件进行此更改:
$config['index_page'] = '';
【讨论】:
【参考方案2】:我使用了以下方法,它在 UBUNTU 中完美运行...!!
首先验证您是否在 index.php 文件中启用了 mod_rewrite(您可以使用 phpinfo()
进行验证)。
如果禁用 mod_rewrite 然后运行:
1.sudo a2enmod rewrite
2.sudo gedit /etc/apache2/sites-available/defaut
只需将 Tag() 中的“AllowOverride None”替换为“AllowOverride All
”
3.然后请运行sudo service apache2 restart
好的好的...
现在在你的 Codeigniter 的根目录 -> 找到 .htaccess
文件,如果没有找到然后按 ctrl+h ,仍然没有找到然后创建一个文件 .htaccess
在.htaccess
粘贴以下代码:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /ROOT DIRECTORY NAME/
# Directs all EE web requests through the site index file
RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
好的,最后只是替换ROOT DIRECTORY NAME
不要忘记从application/config/config.php
文件中删除 index.php
使那条线像
$config['index_page'] = '';
【讨论】:
【参考方案3】:我将这个 htaccess 用于我的所有 CodeIgniter 项目。它也支持子文件夹。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
#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]
</IfModule>
<IfModule !mod_rewrite.c>
# 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
</IfModule>
【讨论】:
是的,在我调整了 config 文件夹中的 config.php 文件后,这个也可以工作(参见上面的编辑)。但是谢谢队友:)【参考方案4】:在你的system/application/config/config.php
,更改
$config['index_page'] = "index.php";
到
$config['index_page'] = "";
然后在您的 .htaccess 中添加:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|stylesheets|scripts|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
【讨论】:
【参考方案5】:for Codeigniter 3.1.4
# php -- BEGIN cPanel-generated handler, do not edit
# Set the “ea-php56” package as the default “PHP” programming language.
<IfModule mime_module>
AddType application/x-httpd-ea-php56 .php .php5 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit
# BEGIN cPanel-generated php ini directives, do not edit
# Manual editing of this file may result in unexpected behavior.
# To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor)
# For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI)
<IfModule php5_module>
php_flag asp_tags On
php_flag display_errors On
php_value max_execution_time 30
php_value max_input_time 60
php_value max_input_vars 1000
php_value memory_limit 512M
php_value post_max_size 128M
php_value session.gc_maxlifetime 1440
php_value session.save_path "/var/cpanel/php/sessions/ea-php56"
php_value upload_max_filesize 128M
php_flag zlib.output_compression Off
</IfModule>
# END cPanel-generated php ini directives, do not edit
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
</IfModule>
【讨论】:
【参考方案6】:<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
直播:
#RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
本地:
#RewriteRule .* index.php/$0 [PT,L]
【讨论】:
以上是关于使用 .htaccess 文件删除 CodeIgniter 中的 index.php的主要内容,如果未能解决你的问题,请参考以下文章
尝试使用 .htaccess 文件删除 .php 扩展名时出现 403 禁止错误