从Web根目录的子目录中的CodeIgniter URL中删除index.php

时间:2012-07-15 21:48:45

标签: php linux apache codeigniter mod-rewrite

我一直在努力实现这个目标!

我在webroot的子文件夹中有我的codeigniter应用程序,子文件夹名为'Tat'。

我在codeigniter文件夹中使用以下.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
    #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.
    ErrorDocument 404 /index.php
</IfModule>

如果我访问: 127.0.0.1/Tat/ - 我去了CodeIgniter应用程序,这很好。

如果我访问: 127.0.0.1/Tat/index.php/register - 我转到我的CI应用程序的注册页面(不希望index.php在那里!)

如果我访问: 127.0.0.1/Tat/register - 它将我带到整个服务器的Web根目录!我想把它带到注册页面!

我不知道怎么做!

值得一提的是: *我的基本网址设置为:$ config ['base_url'] ='http://127.0.0.1:5678/Tat'; *我的索引页面已设置:$ config ['index_page'] =''; *我完全控制服务器,它是在Ubuntu Precise 64上运行Apache2的开发服务器。

如果有人能指出我正确的方向或纠正我的.htaccess或告诉我如何修改那些非常棒的apache设置!

感谢。

2 个答案:

答案 0 :(得分:1)

您的网站位于子文件夹中,因此请在第4行设置RewriteBase:

RewriteBase /Tat

答案 1 :(得分:0)

我终于找到了答案!我的服务器配置不正确,我没有启用mod_rewrite。

Ubuntu用户,在命令行上启用它以启用它: sudo a2enmod重写

然后重启Apache。

我正在使用以下.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
    #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.
    ErrorDocument 404 /index.php
</IfModule>