1

我正在尝试将 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/
4

1 回答 1

1

我相信德克是正确的。

这是我在每个应用程序文件夹上使用的代码(从 Elliot Haughin 获得),它运行良好。只需将 APP_FOLDER_NAME 更改为您希望 appone、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。

干杯。

于 2012-06-15T20:18:24.997 回答