CodeIgniter使用.htaccess删除index.php

时间:2012-12-04 23:51:06

标签: apache codeigniter

我已经做了一个小时了,所以我想我也可以问。

我正在尝试从我的CodeIgniter应用程序的URL中删除index.php而无法执行此操作。

该应用在我办公室的专用服务器上运行,我通过网址http://smr_local

访问该应用

这是我的基本虚拟主机块

<VirtualHost 192.168.1.90:80> 
    ServerAdmin admin@server.com
    DocumentRoot "/var/www/smr.dev/app"
    ServerName smr_local
    ErrorLog "/etc/httpd/logs/error_log"
    CustomLog "/etc/httpd/logs/access_log" common
    <Directory /var/www/smr.dev/app>
        Order allow,deny
        Allow from all
        AllowOverride All
    </Directory>
    <IfModule mod_rewrite.c>
        RewriteEngine on
    </IfModule>
</VirtualHost>

这是我的.htaccess文件

RewriteEngine on
RewriteBase /
# Hide the application and system directories by redirecting the request to index.php
RewriteRule ^(application|system|\.svn) index.php/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [QSA,L]

我的配置文件

$config['base_url']    = "http://smr_local/";
$config['index_page'] = '';
$config['uri_protocol'] = 'REQUEST_URI';

现在,当我尝试访问我的基本网址http://smr_local/user/courses时,我的apache错误日志中出现错误,我得到了这个。

File does not exist: /var/www/smr.dev/app/user

我真的不知道下一步该尝试什么。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

你检查过官方user guide吗?

example.com/index.php/news/article/my_article

您可以使用带有一些简单规则的.htaccess文件轻松删除此文件。下面是这样一个文件的示例,使用“否定”方法,除了指定的项目之外,所有内容都被重定向:

RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]

在上面的示例中,除index.php,images和robots.txt之外的任何HTTP请求都被视为对index.php文件的请求。


我以前一直在使用Codeigniter,这就是我如何使用它:

这是我的.htaccess(假设你有默认的文件夹结构):

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    # Removes access to the system folder by users.
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    # Prevents user access to the application folder
    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>
    ErrorDocument 404 /index.php
</IfModule> 

这是config.php的相关部分:

$config['base_url'] = '';
$config['index_page'] = '';
$config['uri_protocol'] = 'AUTO';
$config['url_suffix'] = '';

如果这样做无效,那么您的问题可能出现在Apache配置中。

然后提供您的httpd.conf和任何其他相关配置,而不仅仅是virtual-hosts