.htaccess codeigniter 多个域
我想知道是否可以组织 CodeIgniter 安装的以下结构:
- Main folder
-- codeigniter
-- images
-- site1-application
-- site2-application
-- site1-index.php
-- site2-index.php
主要思想是在多个 Web 中使用相同的 images 和 codeigniter 文件夹站点以便于维护。
目前,我确实有两个网站驻留在两个标准安装中,并且我无法共享图像文件夹,也无法在多个网站上同时更新系统库。
我对 .htaccess 文件进行了一些操作,但我没有运气:(
提前致谢!
I'd like to know if it is possible to organize the following structure of the CodeIgniter installation:
- Main folder
-- codeigniter
-- images
-- site1-application
-- site2-application
-- site1-index.php
-- site2-index.php
The main idea is to use the same images and codeigniter folder across the multiple web sites for easier maintanance.
For now I do have two web sites that are resides in two standard installations and I'm unable to share the images folder nor to update system libraries simulaneously at multiple web sites.
I've played alittle with the .htaccess file, but no luck for me :(
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认推荐的 CodeIgniter .htaccess 文件:
根据您的目的调整 CI .htaccess 文件(您知道,一年太晚了):
Default recommended CodeIgniter .htaccess file:
Tweaked CI .htaccess file for your purposes (you know, a year too late):
是的,这是可能的。
使用 .htaccess 将所有流量从一个域定向到 site1-index.php,将所有流量从另一个域定向到 site2-index.php。
CI 应用程序和系统文件夹的位置在 *-index.php 文件中设置。
Yes, it's possible.
Use .htaccess to direct all trafic from one domain to site1-index.php and all traffic from another domain to site2-index.php.
The location of CI Application and System folders is set in the *-index.php files.