1

index.phpCodeigniter 应用程序通常使用 mod_rewrite从 url中排除字符串。我在同一个域中有两个 Codeigniter 应用程序。一个 Codigniter 应用程序位于 web 根文件夹中,另一个 Codigniter 应用程序位于 web 根文件夹的子文件夹中。

Codeigniter 应用程序 1:

http://domain.com/index.php

Codeigniter 应用 2(登陆页面应用):

http://domain.com/land/index.php 

这两个 Codeigniter 应用程序都是原子的,它们之间不共享任何文件。Codeigniter 框架中的每个文件都public_html/public_html/land/. 所以我需要排除index.phpurls 中寻址根文件夹的字符串,/并排除子文件夹中的字符串。index.php/land/

根文件夹中的 .htaccess 文件使用Codeigniter wiki中广泛推荐的 mod_rewrite 规则(代码如下) ,这组规则适用于根 Codeigniter 应用程序(应用程序 1)。这些规则位于 Web 根文件夹中。

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

上述规则集index.php从根 Codeigniter 应用程序中的 url 中删除没有问题。但是这组规则似乎不允许执行 mod_rewrite 规则public_html/land/.htaccess

当我删除 中的 mod_rewrite 规则时public_html/.htaccesspublic_html/land/.htaccess开始评估中的 mod_rewrite 规则。

有没有办法更改 mod_rewrite 规则public_html/.htaccess以处理旨在访问/land/子文件夹的 url 的特殊情况?

我认为最好的解决方案可能是更改 mod_rewrite 规则public_html/.htaccess以允许在public_html/land/.htaccessurl 中寻址子文件夹时执行 mod_rewrite 规则。我愿意接受任何建议。

先发制人地回答“为什么不使用子域?” 1. 在 SSL 证书上省钱。2) 非技术用户有时会对营销基础域名的子域感到困惑。

先发制人地回答“为什么不将 Codeigniter 应用程序结合起来使用框架中的相同文件?” 复制框架文件是保持版本控制存储库分离的一种简单方法。

4

2 回答 2

1

问题是规则public_html/.htaccess正在重写 URL 的去向/land/,你需要一个直通,这样当/land/被请求时什么都不会发生。添加:

RewriteRule ^land/ - [L]

在你的其他规则之前。

于 2012-05-10T19:09:43.533 回答
1

如果它是请求字符串的一部分,则在顶部添加一条规则以仅转到 land 子文件夹。这样,/land/.htaccess 中的规则将被执行,而不是 /.htaccess 中的后续规则。所以把它放在顶部:

RewriteRule ^land.*$ - [NC,L]

这将检查请求是否以“land”开头并将其重定向到子目录,其中将应用与该子目录对应的 .htaccess 规则。

现有规则检查文件和文件夹并且如果请求对应于其中之一则不进行重写的原因是因为请求中“土地”后面的任何内容可能不是真实文件,因此会触发重写规则。

于 2012-05-10T19:05:25.733 回答