CodeIgniter:无法从URL中删除index.php

时间:2011-11-25 21:18:41

标签: codeigniter url

没有运气从网址中删除index.php文件。

例如,我想通过http://domain.com/welcome

访问'welcome'控制器

目前在尝试时也会出现404错误。

但是,目前我只能通过http://domain.com/index.php/welcome

进行访问

我目前在我的.htaccess文件中有这个,我是从CI用户指南中获得的:

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

我的.htaccess文件位于应用程序文件夹上方的目录中。

directory screenshot

任何帮助都会很棒。

1 个答案:

答案 0 :(得分:0)

我有以下.htaccess

<IfModule mod_rewrite.c>
    AcceptPathInfo On

    RewriteEngine On

    ### Canonicalize codeigniter URLs

    # If your default controller is something other than
    # "welcome" you should probably change this
    # RewriteRule ^(welcome(/index)?|index(\.php)?)/?$ / [L,R=301]
    # RewriteRule ^(.*)/index/?$ $1 [L,R=301]

    # Removes trailing slashes (prevents SEO duplicate content issues)
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.+)/$ $1 [L,R=301]

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

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

    # Without mod_rewrite, route 404's to the front controller
    ErrorDocument 404 /index.php

</IfModule>

另外,请确保httpd.conf的AllowOverride指令未设置为None,因为这会阻止您的.htaccess规则被重命名。