简体   繁体   English

htaccess和mod_rewrite codeigniter

[英]htaccess and mod_rewrite codeigniter

I am using codeigniter and below is my htaccess file. 我正在使用codeigniter,下面是我的htaccess文件。 However, i want a single directory to be accessable outside of the codeigniter app via my domain.com/directory. 但是,我希望可以通过domain.com/directory在codeigniter应用程序外部访问单个目录。 the other directory is a forum not related to codeigniter. 另一个目录是一个与codeigniter不相关的论坛。 how would i set up a rule in htaccess? 我将如何在htaccess中设置规则? i dont have access to http.conf 我无权访问http.conf

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

This should already work. 这应该已经可以了。 RewriteCond %{REQUEST_FILENAME} !-d tells mod_rewrite to ignore actual directories, and RewriteCond %{REQUEST_FILENAME} !-f tells it to ignore actual files. RewriteCond %{REQUEST_FILENAME} !-d告诉mod_rewrite忽略实际目录,而RewriteCond %{REQUEST_FILENAME} !-f告诉它忽略实际文件。

I use this to exclude any folder from being parsed to codeigniter framework as a controller. 我用它来排除任何文件夹被解析为控制器的codeigniter框架。 So www.domain.com/images/ would run as normal folder, etc. There you can put your individual directives of htaccess. 因此www.domain.com/images/可以作为普通文件夹运行,等等。您可以在其中放置htaccess的各个指令。 Best of luck! 祝你好运!

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM