Codeigniter:一个站点,两个域

时间:2013-09-07 10:01:40

标签: php codeigniter dns subdomain

我的网站有一个CodeIgniter应用程序,一个数据库但有两个域。这是我第一次处理这种情况,所以......我如何配置在两个域中运行我的CI网站,请帮忙。

1 个答案:

答案 0 :(得分:0)

DB config 文件中写下这样的条件

if(strpos($your_current_url, 'domain1') !== FALSE) :
  /*
   * DB CONFIG FOR DOMAIN1
   */
elseif(strpos($your_current_url, 'domain2') !== FALSE) :
  /*
   * DB CONFIG FOR DOMAIN2
   */
endif;