2010-09-15 78 views
0

我使用codeigniter和以下是我的htaccess文件。不过,我希望通过我的domain.com/directory在codeigniter应用程序之外访问单个目录。另一个目录是与codeigniter无关的论坛。我将如何在htaccess中设置规则?我没有访问http.confhtaccess和mod_rewrite codeigniter

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

回答

0

这应该已经工作。 RewriteCond %{REQUEST_FILENAME} !-d告诉mod_rewrite忽略实际的目录,RewriteCond %{REQUEST_FILENAME} !-f告诉它忽略实际的文件。

+0

我想的东西,但我认为问题是,当我浏览到domain.com/directory笨对待目录就像一个控制器,但是我想,目录如同一个普通的文件夹进行处理。它有自己的index.php和htaccess文件。让我看看这个测试是如何进行的。但你明白我的意思吗?我应该还好吗? – Kyle 2010-09-15 19:54:12

+1

我在说的是我不知道为什么这是一个问题。 'RewriteCond%{REQUEST_FILENAME}!-d'表示如果文件名实际上是文件夹,则不重写。要尝试的一件事是在URL的末尾添加一个尾部斜线:'domain.com/directory /'而不是'domain.com/directory'。 – 2010-09-15 19:59:08

0

我使用它来排除任何文件夹被解析为codeigniter框架作为控制器。 因此,www.domain.com/images/将作为普通文件夹运行,等等。你可以把你的个人指令htaccess。祝你好运!

RewriteCond $1 !^(folders_to_exclude_from_CI|images|css|assets|resources|robots\.txt)