我如何在codeigniter中避免使用index.php

时间:2012-02-26 18:17:25

标签: php codeigniter

我正在使用apache服务器,我需要从uri

中删除index.php

3 个答案:

答案 0 :(得分:5)

打开config.php并替换

$config['index_page'] = "index.php" by $config['index_page'] = ""

在.htaccess文件中添加

RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]

在某些情况下,uri_protocol的默认设置无法正常运行。要解决这个问题,只需在config.php中替换

$config['uri_protocol'] = "AUTO" by $config['uri_protocol'] = "REQUEST_URI"

答案 1 :(得分:4)

它就在CI用户指南中(删除index.php文件):https://www.codeigniter.com/user_guide/general/urls.html

答案 2 :(得分:1)

如果您没有.htaccess文件,请创建它并在其中添加此代码:

<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> 

然后在application / config / config.php中找到$ config ['index_page'] ='index.php';并用$ config替换['index_page'] =''; 附: Sarfraz提供的答案仅适用于本地机器。我提供的全球作品