index.php
Codeigniter 应用程序通常使用 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.php
urls 中寻址根文件夹的字符串,/
并排除子文件夹中的字符串。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/.htaccess
,public_html/land/.htaccess
开始评估中的 mod_rewrite 规则。
有没有办法更改 mod_rewrite 规则public_html/.htaccess
以处理旨在访问/land/
子文件夹的 url 的特殊情况?
我认为最好的解决方案可能是更改 mod_rewrite 规则public_html/.htaccess
以允许在public_html/land/.htaccess
url 中寻址子文件夹时执行 mod_rewrite 规则。我愿意接受任何建议。
先发制人地回答“为什么不使用子域?” 1. 在 SSL 证书上省钱。2) 非技术用户有时会对营销基础域名的子域感到困惑。
先发制人地回答“为什么不将 Codeigniter 应用程序结合起来使用框架中的相同文件?” 复制框架文件是保持版本控制存储库分离的一种简单方法。