Codeigniter - 删除index.php

时间:2011-08-14 14:55:15

标签: codeigniter

我下载了基于代码点火器的MyClientBase应用程序。安装完成后,我查看了MyClientBase的网站,但默认情况下index.php仍然存在。 我尝试使用codeigniter的用户指南中的提示删除index.php,但它不起作用。 这个问题有没有解决方案?谢谢

2 个答案:

答案 0 :(得分:0)

我使用以下.htaccess文件删除index.php。我不确定用户指南中指定了哪一个,但我发现这是完美的工作:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

#'system' can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
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

#This last condition enables access to the images and css folders, and the robots.txt file
RewriteCond $1 !^(index\.php|(.*)\.swf|images|robots\.txt|css|docs|cache)
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.
    ErrorDocument 404 /index.php
</IfModule>

同时从config.php文件中删除'index.php'。祝你好运!

答案 1 :(得分:0)

我不知道它是否会有所帮助但是,我使用它来从codeigniter url中删除我的index.php,创建一个名为.htaccess的文件并将其放到你的codeigniter文件夹中。

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.+)$ index.php?/$1 [L]