具有多个应用程序的CodeIgniter和mod_rewrite

时间:2012-06-15 20:07:10

标签: codeigniter mod-rewrite

我正在尝试将CodeIgniter用于多个应用程序,并将mod_rewrite用于应用程序文件夹/名称。

我的CodeIgniter结构如下:

webroot/appone/
webroot/apptwo/
webroot/system/
webroot/index.php
webroot/appone.php
webroot/apptwo.php

我按照此处列出的示例使用CI与多个应用程序。 http://codeigniter.com/wiki/Multiple_Applications/

我希望使用mod_rewrite来显示以下内容:

domain.com/appone/
domain.com/apptwo/

1 个答案:

答案 0 :(得分:1)

我相信Dirk是对的。

这是我在每个app文件夹上使用的代码(从Elliot Haughin获得),它运行正常。只需将APP_FOLDER_NAME更改为您想要的任何内容,apptwo等。

在每个文件夹上都有一个.htaccess文件,其中包含以下内容:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /APP_FOLDER_NAME

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

PS。不要忘记删除index.php并在CI配置上定义基本URL。

干杯。